Uses of Interface
org.wildfly.security.evidence.Evidence
-
Packages that use Evidence Package Description org.wildfly.security.credential org.wildfly.security.evidence The evidence types used by Elytron. -
-
Uses of Evidence in org.wildfly.security.credential
Methods in org.wildfly.security.credential with parameters of type Evidence Modifier and Type Method Description default booleanCredential. canVerify(Evidence evidence)Determine whether this credential can verify the given evidence.default booleanCredential. verify(Supplier<Provider[]> providerSupplier, Evidence evidence)Verify the given evidence.default booleanCredential. verify(Evidence evidence)Deprecated.useCredential.verify(Supplier, Evidence)insteadbooleanPasswordCredential. verify(Supplier<Provider[]> providerSupplier, Evidence evidence)booleanPasswordCredential. verify(Supplier<Provider[]> providerSupplier, Evidence evidence, Charset hashCharset)Verify the given evidence.booleanPasswordCredential. verify(Evidence evidence, Charset hashCharset)Verify the given evidence.Method parameters in org.wildfly.security.credential with type arguments of type Evidence Modifier and Type Method Description default booleanCredential. canVerify(Class<? extends Evidence> evidenceClass, String algorithmName)Determine whether this credential can, generally speaking, verify the given evidence type.booleanPasswordCredential. canVerify(Class<? extends Evidence> evidenceClass, String algorithmName)static booleanPasswordCredential. canVerifyEvidence(Class<? extends Evidence> evidenceClass, String algorithmName)Determine whether this credential type can, generally speaking, verify the given evidence type. -
Uses of Evidence in org.wildfly.security.evidence
Subinterfaces of Evidence in org.wildfly.security.evidence Modifier and Type Interface Description interfaceAlgorithmEvidenceA piece of evidence which supports multiple algorithms.Classes in org.wildfly.security.evidence that implement Evidence Modifier and Type Class Description classBearerTokenEvidenceA piece of evidence that is comprised of a bearer security token.classPasswordGuessEvidenceA piece of evidence that is comprised of a password guess.classX509PeerCertificateChainEvidenceA piece of evidence that is comprised of a verified peer certificate chain.Methods in org.wildfly.security.evidence with type parameters of type Evidence Modifier and Type Method Description default <E extends Evidence,R>
RAlgorithmEvidence. castAndApply(Class<E> evidenceType, String algorithmName, Function<E,R> function)default <E extends Evidence,R>
REvidence. castAndApply(Class<E> evidenceType, String algorithmName, Function<E,R> function)Cast this evidence type and apply a function if the type matches.default <E extends Evidence,R>
REvidence. castAndApply(Class<E> evidenceType, Function<E,R> function)Cast this evidence type and apply a function if the type matches.default <E extends Evidence>
EEvidence. castAs(Class<E> evidenceType)Cast this evidence type if the type matches.default <E extends Evidence>
EEvidence. castAs(Class<E> evidenceType, String algorithmName)Cast this evidence type if the type and algorithm matches.
-