Uses of Interface
org.wildfly.security.credential.Credential
Packages that use Credential
-
Uses of Credential in org.wildfly.security.credential
Subinterfaces of Credential in org.wildfly.security.credentialModifier and TypeInterfaceDescriptioninterfaceA credential which has an associated algorithm name.interfaceA credential which contains an X.509 certificate chain.Classes in org.wildfly.security.credential that implement CredentialModifier and TypeClassDescriptionfinal classACredentialthat usually holds a bearer security token.final classA credential for holding aGSSCredentialand optionally an associatedKerberosTicket.final classA public/private key pair credential.final classA credential for password authentication.final classA public key credential.final classA secret key credential.classA 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 hostsfinal classA credential containing a private key and an X.509 certificate chain.final classA credential containing an X.509 certificate chain.Fields in org.wildfly.security.credential declared as CredentialModifier and TypeFieldDescriptionstatic final Credential[]Credential.NO_CREDENTIALSAn array with no credentials.Methods in org.wildfly.security.credential with type parameters of type CredentialModifier and TypeMethodDescriptiondefault <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>
CCast this credential type if the type matches.default <C extends Credential>
CCast 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 CredentialModifier and TypeMethodDescriptionCredential.clone()Creates and returns a copy of thisCredential.SSHCredential.clone()static CredentialCredential.fromKeyStoreEntry(KeyStore.Entry keyStoreEntry) Convert a key store entry into a credential object.SSHCredential.getPassphrase()Get the passphrase used to decrypt the private keyMethods in org.wildfly.security.credential with parameters of type CredentialModifier and TypeMethodDescriptiondefault booleanAlgorithmCredential.matches(Credential other) default booleanCredential.matches(Credential other) Determine if this credential is the same kind of credential as the given credential.SSHCredential.Builder.setPassphrase(Credential passphrase) The passphrase needed to decrypt the private keyMethod parameters in org.wildfly.security.credential with type arguments of type CredentialModifier and TypeMethodDescriptiondefault 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.