Uses of Class
org.wildfly.security.ssl.SecurityLevel
-
Packages that use SecurityLevel Package Description org.wildfly.security.ssl -
-
Uses of SecurityLevel in org.wildfly.security.ssl
Fields in org.wildfly.security.ssl declared as SecurityLevel Modifier and Type Field Description private SecurityLevel
MechanismDatabase.Entry. level
Fields in org.wildfly.security.ssl with type parameters of type SecurityLevel Modifier and Type Field Description private EnumSet<SecurityLevel>
LevelCipherSuitePredicate. set
Methods in org.wildfly.security.ssl that return SecurityLevel Modifier and Type Method Description (package private) static SecurityLevel
SecurityLevel. forName(String name)
SecurityLevel
MechanismDatabase.Entry. getLevel()
static SecurityLevel
SecurityLevel. valueOf(String name)
Returns the enum constant of this type with the specified name.static SecurityLevel[]
SecurityLevel. 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 SecurityLevel Modifier and Type Method Description static CipherSuitePredicate
CipherSuitePredicate. matchLevel(SecurityLevel level)
Return a predicate which matches the given security level.static CipherSuitePredicate
CipherSuitePredicate. matchLevel(SecurityLevel... levels)
Return a predicate which matches any of the given security levels.static CipherSuitePredicate
CipherSuitePredicate. matchLevelLessThan(SecurityLevel level)
Return a predicate which matches all security levels less than the given level.Method parameters in org.wildfly.security.ssl with type arguments of type SecurityLevel Modifier and Type Method Description (package private) static boolean
SecurityLevel. isFull(EnumSet<SecurityLevel> levels)
static CipherSuitePredicate
CipherSuitePredicate. matchLevel(EnumSet<SecurityLevel> levels)
Return a predicate which matches any of the given security levels.Constructors in org.wildfly.security.ssl with parameters of type SecurityLevel 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 SecurityLevel Constructor Description LevelCipherSuitePredicate(EnumSet<SecurityLevel> set)
-