Package org.wildfly.security.credential
Class AbstractX509CertificateChainCredential
- java.lang.Object
-
- org.wildfly.security.credential.AbstractX509CertificateChainCredential
-
- All Implemented Interfaces:
Cloneable
,AlgorithmCredential
,Credential
,X509CertificateChainCredential
- Direct Known Subclasses:
X509CertificateChainPrivateCredential
,X509CertificateChainPublicCredential
abstract class AbstractX509CertificateChainCredential extends Object implements X509CertificateChainCredential
-
-
Field Summary
Fields Modifier and Type Field Description (package private) X509Certificate[]
certificateChain
-
Fields inherited from interface org.wildfly.security.credential.Credential
NO_CREDENTIALS
-
-
Constructor Summary
Constructors Constructor Description AbstractX509CertificateChainCredential(X509Certificate... certificateChain)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
canVerify(Class<? extends Evidence> evidenceClass, String algorithmName)
Determine whether this credential can, generally speaking, verify the given evidence type.abstract AbstractX509CertificateChainCredential
clone()
Creates and returns a copy of thisCredential
.String
getAlgorithm()
Get the algorithm name associated with this credential (will never benull
).X509Certificate[]
getCertificateChain()
Get a copy of the certificate chain.X509Certificate
getFirstCertificate()
Get the first certificate in the chain.X509Certificate
getLastCertificate()
Get the last certificate in the chain.<P extends AlgorithmParameterSpec>
PgetParameters(Class<P> paramSpecClass)
Get the algorithm parameters of the given type from this credential.boolean
impliesSameParameters(AlgorithmCredential other)
Determine whether the other credential's parameters are implied by this one.boolean
supportsParameters(Class<? extends AlgorithmParameterSpec> paramSpecClass)
Determine whether this credential instance supports the given algorithm parameter type.boolean
verify(Supplier<Provider[]> providerSupplier, Evidence evidence)
Verify the given evidence.boolean
verify(Evidence evidence)
Verify the given evidence.-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.wildfly.security.credential.AlgorithmCredential
getParameters, impliesParameters, matches, matches, matches, supportsParameters
-
Methods inherited from interface org.wildfly.security.credential.Credential
canVerify, castAndApply, castAndApply, castAndApply, castAs, castAs, castAs
-
-
-
-
Field Detail
-
certificateChain
final X509Certificate[] certificateChain
-
-
Constructor Detail
-
AbstractX509CertificateChainCredential
AbstractX509CertificateChainCredential(X509Certificate... certificateChain)
-
-
Method Detail
-
canVerify
public boolean canVerify(Class<? extends Evidence> evidenceClass, String algorithmName)
Description copied from interface:Credential
Determine whether this credential can, generally speaking, verify the given evidence type.- Specified by:
canVerify
in interfaceCredential
- Parameters:
evidenceClass
- the evidence type (must not benull
)algorithmName
- the evidence algorithm name (may benull
if the type of evidence does not support algorithm names)- Returns:
true
if the evidence can be verified by this credential,false
otherwise
-
verify
public boolean verify(Evidence evidence)
Description copied from interface:Credential
Verify the given evidence.- Specified by:
verify
in interfaceCredential
- Parameters:
evidence
- the evidence to verify (must not benull
)- Returns:
true
if the evidence is verified,false
otherwise
-
verify
public boolean verify(Supplier<Provider[]> providerSupplier, Evidence evidence)
Description copied from interface:Credential
Verify the given evidence.- Specified by:
verify
in interfaceCredential
- Parameters:
providerSupplier
- the provider supplier to use for verification purposesevidence
- the evidence to verify (must not benull
)- Returns:
true
if the evidence is verified,false
otherwise
-
getAlgorithm
public String getAlgorithm()
Description copied from interface:AlgorithmCredential
Get the algorithm name associated with this credential (will never benull
).- Specified by:
getAlgorithm
in interfaceAlgorithmCredential
- Returns:
- the algorithm name
-
supportsParameters
public boolean supportsParameters(Class<? extends AlgorithmParameterSpec> paramSpecClass)
Description copied from interface:AlgorithmCredential
Determine whether this credential instance supports the given algorithm parameter type.- Specified by:
supportsParameters
in interfaceAlgorithmCredential
- Parameters:
paramSpecClass
- the parameter specification class (must not benull
)- Returns:
true
if the parameter type is supported,false
otherwise
-
getParameters
public <P extends AlgorithmParameterSpec> P getParameters(Class<P> paramSpecClass)
Description copied from interface:AlgorithmCredential
Get the algorithm parameters of the given type from this credential.- Specified by:
getParameters
in interfaceAlgorithmCredential
- Parameters:
paramSpecClass
- the parameter specification class (must not benull
)- Returns:
- the parameter specification, or
null
if no parameters are present or available or the given type was not supported by this credential
-
impliesSameParameters
public boolean impliesSameParameters(AlgorithmCredential other)
Description copied from interface:AlgorithmCredential
Determine whether the other credential's parameters are implied by this one.- Specified by:
impliesSameParameters
in interfaceAlgorithmCredential
- Parameters:
other
- the other credential (must not benull
)- Returns:
true
if the credentials have matching parameters,false
otherwise
-
getCertificateChain
public X509Certificate[] getCertificateChain()
Description copied from interface:X509CertificateChainCredential
Get a copy of the certificate chain.- Specified by:
getCertificateChain
in interfaceX509CertificateChainCredential
- Returns:
- a copy of the certificate chain
-
getFirstCertificate
public X509Certificate getFirstCertificate()
Description copied from interface:X509CertificateChainCredential
Get the first certificate in the chain. This corresponds to the subject certificate.- Specified by:
getFirstCertificate
in interfaceX509CertificateChainCredential
- Returns:
- the first certificate (not
null
)
-
getLastCertificate
public X509Certificate getLastCertificate()
Description copied from interface:X509CertificateChainCredential
Get the last certificate in the chain. This corresponds to the ultimate issuer certificate.- Specified by:
getLastCertificate
in interfaceX509CertificateChainCredential
- Returns:
- the last certificate (not
null
)
-
clone
public abstract AbstractX509CertificateChainCredential clone()
Description copied from interface:X509CertificateChainCredential
Creates and returns a copy of thisCredential
.- Specified by:
clone
in interfaceAlgorithmCredential
- Specified by:
clone
in interfaceCredential
- Specified by:
clone
in interfaceX509CertificateChainCredential
- Overrides:
clone
in classObject
- Returns:
- a copy of this
Credential
.
-
-