Uses of Interface
org.wildfly.security.credential.Credential
-
Packages that use Credential Package Description org.wildfly.security.credential -
-
Uses of Credential in org.wildfly.security.credential
Subinterfaces of Credential in org.wildfly.security.credential Modifier and Type Interface Description interfaceAlgorithmCredentialA credential which has an associated algorithm name.interfaceX509CertificateChainCredentialA credential which contains an X.509 certificate chain.Classes in org.wildfly.security.credential that implement Credential Modifier and Type Class Description classBearerTokenCredentialACredentialthat usually holds a bearer security token.classGSSKerberosCredentialA credential for holding aGSSCredentialand optionally an associatedKerberosTicket.classKeyPairCredentialA public/private key pair credential.classPasswordCredentialA credential for password authentication.classPublicKeyCredentialA public key credential.classSecretKeyCredentialA secret key credential.classSSHCredentialA credential holding the location, key identity and passphrase (instance ofCredential) of a Private key in an external file and/or the name of the file containing the known hostsclassX509CertificateChainPrivateCredentialA credential containing a private key and an X.509 certificate chain.classX509CertificateChainPublicCredentialA credential containing an X.509 certificate chain.Fields in org.wildfly.security.credential declared as Credential Modifier and Type Field Description static Credential[]Credential. NO_CREDENTIALSAn array with no credentials.Methods in org.wildfly.security.credential with type parameters of type Credential Modifier and Type Method Description default <C extends Credential,R>
RCredential. castAndApply(Class<C> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec, Function<C,R> function)Cast this credential type and apply a function if the type matches.default <C extends Credential,R>
RCredential. castAndApply(Class<C> credentialType, String algorithmName, Function<C,R> function)Cast this credential type and apply a function if the type matches.default <C extends Credential,R>
RCredential. castAndApply(Class<C> credentialType, Function<C,R> function)Cast this credential type and apply a function if the type matches.default <C extends Credential>
CCredential. castAs(Class<C> credentialType)Cast this credential type if the type matches.default <C extends Credential>
CCredential. castAs(Class<C> credentialType, String algorithmName)Cast this credential type if the type and algorithm matches.default <C extends Credential>
CCredential. castAs(Class<C> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec)Cast this credential type if the type, algorithm, and parameters match.Methods in org.wildfly.security.credential that return Credential Modifier and Type Method Description CredentialCredential. clone()Creates and returns a copy of thisCredential.CredentialSSHCredential. clone()static CredentialCredential. fromKeyStoreEntry(KeyStore.Entry keyStoreEntry)Convert a key store entry into a credential object.CredentialSSHCredential. getPassphrase()Get the passphrase used to decrypt the private keyMethods in org.wildfly.security.credential with parameters of type Credential Modifier and Type Method Description default booleanAlgorithmCredential. matches(Credential other)default booleanCredential. matches(Credential other)Determine if this credential is the same kind of credential as the given credential.SSHCredential.BuilderSSHCredential.Builder. setPassphrase(Credential passphrase)The passphrase needed to decrypt the private keyMethod parameters in org.wildfly.security.credential with type arguments of type Credential Modifier and Type Method Description default booleanAlgorithmCredential. matches(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec)default booleanCredential. matches(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec)Determine if this credential matches the given criteria.
-