All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.beifengtz.jvmm.server.entity.conf.SslConf Maven / Gradle / Ivy

Go to download

Provides access to operating system, process, thread and other information during Java runtime.

There is a newer version: 2.4.3
Show newest version
package org.beifengtz.jvmm.server.entity.conf;

/**
 * 

* Description: TODO *

*

* Created in 11:30 2022/9/7 * * @author beifengtz */ public class SslConf { private boolean enable; private String certCa; private String cert; private String certKey; private String keyPassword; private boolean openssl = true; public boolean isEnable() { return enable; } public SslConf setEnable(boolean enable) { this.enable = enable; return this; } public String getCertCa() { return certCa; } public SslConf setCertCa(String certCa) { this.certCa = certCa; return this; } public String getCert() { return cert; } public SslConf setCert(String cert) { this.cert = cert; return this; } public String getCertKey() { return certKey; } public SslConf setCertKey(String certKey) { this.certKey = certKey; return this; } public String getKeyPassword() { return keyPassword; } public SslConf setKeyPassword(String keyPassword) { this.keyPassword = keyPassword; return this; } public boolean isOpenssl() { return openssl; } public SslConf setOpenssl(boolean openssl) { this.openssl = openssl; return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy