io.stepfunc.dnp3.MinTlsVersion Maven / Gradle / Ivy
// This library is provided under the terms of a non-commercial license.
//
// Please refer to the source repository for details:
//
// https://github.com/stepfunc/dnp3/blob/master/LICENSE.txt
//
// Please contact Step Function I/O if you are interested in commercial license:
//
// [email protected]
package io.stepfunc.dnp3;
import org.joou.*;
/**
* Minimum TLS version to allow
*/
public enum MinTlsVersion
{
/**
* Allow TLS 1.2 and 1.3
*/
V12(0),
/**
* Only allow TLS 1.3
*/
V13(1),;
final private int value;
private MinTlsVersion(int value)
{
this.value = value;
}
}