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 Protocol
MechanismDatabase.Entry. protocol
Fields in org.wildfly.security.ssl with type parameters of type Protocol Modifier and Type Field Description (package private) static Map<String,Protocol>
Protocol. map
private EnumSet<Protocol>
ProtocolSelector.AddingProtocolSelector. protocols
private EnumSet<Protocol>
ProtocolSelector.FullyDeletingProtocolSelector. protocols
private EnumSet<Protocol>
ProtocolSelector.RemovingProtocolSelector. protocols
private EnumSet<Protocol>
ProtocolCipherSuitePredicate. set
Methods in org.wildfly.security.ssl that return Protocol Modifier and Type Method Description static Protocol
Protocol. forName(String name)
Gets an enum item for given protocol name.Protocol
MechanismDatabase.Entry. getProtocol()
static Protocol
Protocol. 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 ProtocolSelector
ProtocolSelector. add(Protocol protocol)
Add the given protocol.ProtocolSelector
ProtocolSelector. add(Protocol... protocols)
Add the given protocols.ProtocolSelector
ProtocolSelector. deleteFully(Protocol protocol)
Permanently delete the given protocol.ProtocolSelector
ProtocolSelector. deleteFully(Protocol... protocols)
Permanently delete all of the given protocols.boolean
Protocol. in(Protocol... values)
Determine whether this instance is equal to one of the given instances.boolean
Protocol. in(Protocol value1, Protocol value2)
Determine whether this instance is equal to one of the given instances.boolean
Protocol. in(Protocol value1, Protocol value2, Protocol value3)
Determine whether this instance is equal to one of the given instances.static CipherSuitePredicate
CipherSuitePredicate. matchProtocol(Protocol protocol)
Return a predicate which matches the given protocol.static CipherSuitePredicate
CipherSuitePredicate. matchProtocol(Protocol... protocols)
Return a predicate which matches any of the given protocols.ProtocolSelector
ProtocolSelector. remove(Protocol protocol)
Remove the given protocol.ProtocolSelector
ProtocolSelector. 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 ProtocolSelector
ProtocolSelector. add(EnumSet<Protocol> protocols)
Add the given protocols.(package private) void
ProtocolSelector.AddingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
(package private) void
ProtocolSelector.AddingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
(package private) abstract void
ProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
(package private) abstract void
ProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
(package private) void
ProtocolSelector.FullyDeletingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
(package private) void
ProtocolSelector.FullyDeletingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
(package private) void
ProtocolSelector.RemovingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
(package private) void
ProtocolSelector.RemovingProtocolSelector. applyFilter(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
ProtocolSelector
ProtocolSelector. deleteFully(EnumSet<Protocol> protocols)
Permanently delete all of the given protocols.private void
ProtocolSelector. doEvaluate(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
private void
ProtocolSelector. doEvaluate(Set<Protocol> enabled, EnumMap<Protocol,String> supported)
static boolean
Protocol. isFull(EnumSet<Protocol> protocols)
Determine whether the given set is "full" (meaning it contains all possible values).static CipherSuitePredicate
CipherSuitePredicate. matchProtocol(EnumSet<Protocol> protocols)
Return a predicate which matches any of the given protocols.ProtocolSelector
ProtocolSelector. 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)
-