Uses of Class
org.wildfly.security.ssl.Protocol
-
Packages that use Protocol Package Description org.wildfly.security.ssl -
-
Uses of Protocol in org.wildfly.security.ssl
Fields in org.wildfly.security.ssl declared as Protocol Modifier and Type Field Description private ProtocolMechanismDatabase.Entry. protocolFields in org.wildfly.security.ssl with type parameters of type Protocol Modifier and Type Field Description (package private) static Map<String,Protocol>Protocol. mapprivate EnumSet<Protocol>ProtocolSelector.AddingProtocolSelector. protocolsprivate EnumSet<Protocol>ProtocolSelector.FullyDeletingProtocolSelector. protocolsprivate EnumSet<Protocol>ProtocolSelector.RemovingProtocolSelector. protocolsprivate EnumSet<Protocol>ProtocolCipherSuitePredicate. setMethods in org.wildfly.security.ssl that return Protocol Modifier and Type Method Description static ProtocolProtocol. forName(String name)Gets an enum item for given protocol name.ProtocolMechanismDatabase.Entry. getProtocol()static ProtocolProtocol. valueOf(String name)Returns the enum constant of this type with the specified name.static Protocol[]Protocol. 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 Protocol Modifier and Type Method Description ProtocolSelectorProtocolSelector. add(Protocol protocol)Add the given protocol.ProtocolSelectorProtocolSelector. add(Protocol... protocols)Add the given protocols.ProtocolSelectorProtocolSelector. deleteFully(Protocol protocol)Permanently delete the given protocol.ProtocolSelectorProtocolSelector. deleteFully(Protocol... protocols)Permanently delete all of the given protocols.booleanProtocol. in(Protocol... values)Determine whether this instance is equal to one of the given instances.booleanProtocol. in(Protocol value1, Protocol value2)Determine whether this instance is equal to one of the given instances.booleanProtocol. in(Protocol value1, Protocol value2, Protocol value3)Determine whether this instance is equal to one of the given instances.static CipherSuitePredicateCipherSuitePredicate. matchProtocol(Protocol protocol)Return a predicate which matches the given protocol.static CipherSuitePredicateCipherSuitePredicate. matchProtocol(Protocol... protocols)Return a predicate which matches any of the given protocols.ProtocolSelectorProtocolSelector. remove(Protocol protocol)Remove the given protocol.ProtocolSelectorProtocolSelector. remove(Protocol... protocols)Remove the given protocols.Method parameters in org.wildfly.security.ssl with type arguments of type Protocol Modifier and Type Method Description ProtocolSelectorProtocolSelector. add(EnumSet<Protocol> protocols)Add the given protocols.(package private) voidProtocolSelector.AddingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)(package private) voidProtocolSelector.AddingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)(package private) abstract voidProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)(package private) abstract voidProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)(package private) voidProtocolSelector.FullyDeletingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)(package private) voidProtocolSelector.FullyDeletingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)(package private) voidProtocolSelector.RemovingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)(package private) voidProtocolSelector.RemovingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)ProtocolSelectorProtocolSelector. deleteFully(EnumSet<Protocol> protocols)Permanently delete all of the given protocols.private voidProtocolSelector. doEvaluate(Set<Protocol> enabled, EnumMap<Protocol,String> supported)private voidProtocolSelector. doEvaluate(Set<Protocol> enabled, EnumMap<Protocol,String> supported)static booleanProtocol. isFull(EnumSet<Protocol> protocols)Determine whether the given set is "full" (meaning it contains all possible values).static CipherSuitePredicateCipherSuitePredicate. matchProtocol(EnumSet<Protocol> protocols)Return a predicate which matches any of the given protocols.ProtocolSelectorProtocolSelector. remove(EnumSet<Protocol> protocols)Remove the given protocols.Constructors in org.wildfly.security.ssl with parameters of type Protocol 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 Protocol Constructor Description AddingProtocolSelector(ProtocolSelector prev, EnumSet<Protocol> protocols)FullyDeletingProtocolSelector(ProtocolSelector prev, EnumSet<Protocol> protocols)ProtocolCipherSuitePredicate(EnumSet<Protocol> set)RemovingProtocolSelector(ProtocolSelector prev, EnumSet<Protocol> protocols)
-