Package net.webpdf.wsclient.openapi
Class ServerConfigCiphersSSL
- java.lang.Object
-
- net.webpdf.wsclient.openapi.ServerConfigCiphersSSL
-
public class ServerConfigCiphersSSL extends Object
Selects encryption algorithms (ciphers) used by the TLS connector.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classServerConfigCiphersSSL.CipherEnumSpecifies the encryption algorithm (cipher) for TLS (SSL) connections.
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CIPHERstatic StringJSON_PROPERTY_FORCE_ORDER
-
Constructor Summary
Constructors Constructor Description ServerConfigCiphersSSL()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerConfigCiphersSSLaddCipherItem(ServerConfigCiphersSSL.CipherEnum cipherItem)ServerConfigCiphersSSLcipher(List<ServerConfigCiphersSSL.CipherEnum> cipher)booleanequals(Object o)ServerConfigCiphersSSLforceOrder(Boolean forceOrder)@Nullable List<ServerConfigCiphersSSL.CipherEnum>getCipher()Selects a cipher that shall be supported.@Nullable BooleangetForceOrder()When set to true, this forces the user to honor the TLS connector's cipher preference order.inthashCode()voidsetCipher(List<ServerConfigCiphersSSL.CipherEnum> cipher)voidsetForceOrder(Boolean forceOrder)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CIPHER
public static final String JSON_PROPERTY_CIPHER
- See Also:
- Constant Field Values
-
JSON_PROPERTY_FORCE_ORDER
public static final String JSON_PROPERTY_FORCE_ORDER
- See Also:
- Constant Field Values
-
-
Method Detail
-
cipher
public ServerConfigCiphersSSL cipher(List<ServerConfigCiphersSSL.CipherEnum> cipher)
-
addCipherItem
public ServerConfigCiphersSSL addCipherItem(ServerConfigCiphersSSL.CipherEnum cipherItem)
-
getCipher
@Nullable public @Nullable List<ServerConfigCiphersSSL.CipherEnum> getCipher()
Selects a cipher that shall be supported.- Returns:
- cipher
-
setCipher
public void setCipher(List<ServerConfigCiphersSSL.CipherEnum> cipher)
-
forceOrder
public ServerConfigCiphersSSL forceOrder(Boolean forceOrder)
-
getForceOrder
@Nullable public @Nullable Boolean getForceOrder()
When set to true, this forces the user to honor the TLS connector's cipher preference order.- Returns:
- forceOrder
-
setForceOrder
public void setForceOrder(Boolean forceOrder)
-
-