Uses of Class
org.wildfly.security.ssl.Authentication
-
Packages that use Authentication Package Description org.wildfly.security.ssl -
-
Uses of Authentication in org.wildfly.security.ssl
Fields in org.wildfly.security.ssl declared as Authentication Modifier and Type Field Description private Authentication
MechanismDatabase.Entry. authentication
Fields in org.wildfly.security.ssl with type parameters of type Authentication Modifier and Type Field Description private EnumSet<Authentication>
AuthenticationCipherSuitePredicate. set
Methods in org.wildfly.security.ssl that return Authentication Modifier and Type Method Description (package private) static Authentication
Authentication. forName(String name)
Authentication
MechanismDatabase.Entry. getAuthentication()
(package private) static Authentication
Authentication. require(String name)
static Authentication
Authentication. valueOf(String name)
Returns the enum constant of this type with the specified name.static Authentication[]
Authentication. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.wildfly.security.ssl with parameters of type Authentication Modifier and Type Method Description boolean
Authentication. in(Authentication... values)
Determine whether this instance is equal to one of the given instances.boolean
Authentication. in(Authentication value1, Authentication value2)
Determine whether this instance is equal to one of the given instances.boolean
Authentication. in(Authentication value1, Authentication value2, Authentication value3)
Determine whether this instance is equal to one of the given instances.static CipherSuitePredicate
CipherSuitePredicate. matchAuthentication(Authentication authentication)
Return a predicate which matches the given authentication scheme.static CipherSuitePredicate
CipherSuitePredicate. matchAuthentication(Authentication... authentications)
Return a predicate which matches any of the given authentication schemes.Method parameters in org.wildfly.security.ssl with type arguments of type Authentication Modifier and Type Method Description static boolean
Authentication. isFull(EnumSet<Authentication> authentications)
Determine whether the given set is "full" (meaning it contains all possible values).static CipherSuitePredicate
CipherSuitePredicate. matchAuthentication(EnumSet<Authentication> authentications)
Return a predicate which matches any of the given authentication schemes.Constructors in org.wildfly.security.ssl with parameters of type Authentication Constructor Description Entry(String name, List<String> openSslNames, List<String> aliases, KeyAgreement keyAgreement, Authentication authentication, Encryption encryption, Digest digest, Protocol protocol, boolean export, SecurityLevel level, boolean fips, int strengthBits, int algorithmBits)
Constructor parameters in org.wildfly.security.ssl with type arguments of type Authentication Constructor Description AuthenticationCipherSuitePredicate(boolean accept, EnumSet<Authentication> set)
-