Class CommandCredentialSource
java.lang.Object
org.wildfly.security.credential.source.impl.CommandCredentialSource
- All Implemented Interfaces:
org.wildfly.security.credential.source.CredentialSource
public final class CommandCredentialSource
extends Object
implements org.wildfly.security.credential.source.CredentialSource
A credential source which acquires a credential from the command line.
- Author:
- David M. Lloyd
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA builder for a command credential source. -
Field Summary
Fields inherited from interface org.wildfly.security.credential.source.CredentialSource
NONE -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Construct a new builder instance.<C extends org.wildfly.security.credential.Credential>
CgetCredential(Class<C> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) org.wildfly.security.auth.SupportLevelgetCredentialAcquireSupport(Class<? extends org.wildfly.security.credential.Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.wildfly.security.credential.source.CredentialSource
applyToCredential, applyToCredential, applyToCredential, getCredential, getCredential, getCredentialAcquireSupport, getCredentialAcquireSupport, with, without, without, without
-
Method Details
-
getCredentialAcquireSupport
public org.wildfly.security.auth.SupportLevel getCredentialAcquireSupport(Class<? extends org.wildfly.security.credential.Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) throws IOException - Specified by:
getCredentialAcquireSupportin interfaceorg.wildfly.security.credential.source.CredentialSource- Throws:
IOException
-
getCredential
public <C extends org.wildfly.security.credential.Credential> C getCredential(Class<C> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec) throws IOException - Specified by:
getCredentialin interfaceorg.wildfly.security.credential.source.CredentialSource- Throws:
IOException
-
builder
Construct a new builder instance.- Returns:
- the new builder instance
-