Package com.adyen.model.management
Enum UpdateMerchantWebhookRequest.SslVersionEnum
- java.lang.Object
-
- java.lang.Enum<UpdateMerchantWebhookRequest.SslVersionEnum>
-
- com.adyen.model.management.UpdateMerchantWebhookRequest.SslVersionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<UpdateMerchantWebhookRequest.SslVersionEnum>
- Enclosing class:
- UpdateMerchantWebhookRequest
public static enum UpdateMerchantWebhookRequest.SslVersionEnum extends Enum<UpdateMerchantWebhookRequest.SslVersionEnum>
SSL version to access the public webhook URL specified in the `url` field. Possible values: * **TLSv1.3** * **TLSv1.2** * **HTTP** - Only allowed on Test environment. If not specified, the webhook will use `sslVersion`: **TLSv1.2**.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUpdateMerchantWebhookRequest.SslVersionEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateMerchantWebhookRequest.SslVersionEnumfromValue(String value)StringgetValue()StringtoString()static UpdateMerchantWebhookRequest.SslVersionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static UpdateMerchantWebhookRequest.SslVersionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTTP
public static final UpdateMerchantWebhookRequest.SslVersionEnum HTTP
-
SSL
public static final UpdateMerchantWebhookRequest.SslVersionEnum SSL
-
SSLV3
public static final UpdateMerchantWebhookRequest.SslVersionEnum SSLV3
-
TLS
public static final UpdateMerchantWebhookRequest.SslVersionEnum TLS
-
TLSV1
public static final UpdateMerchantWebhookRequest.SslVersionEnum TLSV1
-
TLSV1_1
public static final UpdateMerchantWebhookRequest.SslVersionEnum TLSV1_1
-
TLSV1_2
public static final UpdateMerchantWebhookRequest.SslVersionEnum TLSV1_2
-
TLSV1_3
public static final UpdateMerchantWebhookRequest.SslVersionEnum TLSV1_3
-
-
Method Detail
-
values
public static UpdateMerchantWebhookRequest.SslVersionEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UpdateMerchantWebhookRequest.SslVersionEnum c : UpdateMerchantWebhookRequest.SslVersionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateMerchantWebhookRequest.SslVersionEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<UpdateMerchantWebhookRequest.SslVersionEnum>
-
fromValue
public static UpdateMerchantWebhookRequest.SslVersionEnum fromValue(String value)
-
-