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

org.voovan.http.server.context.HttpsConfig Maven / Gradle / Ivy

package org.voovan.http.server.context;;

/**
 * Https配置类
 *
 * @author helyho
 * 

* Voovan Framework. * WebSite: https://github.com/helyho/Voovan * Licence: Apache v2 License */ public class HttpsConfig { private String certificateFile; private String certificatePassword; private String keyPassword; public String getCertificateFile() { return certificateFile; } public void setCertificateFile(String certificateFile) { this.certificateFile = certificateFile; } public String getCertificatePassword() { return certificatePassword; } public void setCertificatePassword(String certificatePassword) { this.certificatePassword = certificatePassword; } public String getKeyPassword() { return keyPassword; } public void setKeyPassword(String keyPassword) { this.keyPassword = keyPassword; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy