| 1 19 package org.lucane.applications.webadmin; 20 21 import java.io.Serializable ; 22 23 public class WebConfig implements Serializable  24 { 25 String realmName; 26 boolean httpEnabled; 27 int httpPort; 28 boolean httpsEnabled; 29 int httpsPort; 30 String httpsKeystorePassword; 31 String httpsKeyPassword; 32 33 public WebConfig(String realmName, boolean httpEnabled, int httpPort, boolean httpsEnabled, 34 int httpsPort, String httpsKeystorePassword, String httpsKeyPassword) 35 { 36 this.realmName = realmName; 37 this.httpEnabled = httpEnabled; 38 this.httpPort = httpPort; 39 this.httpsEnabled = httpsEnabled; 40 this.httpsPort = httpsPort; 41 this.httpsKeystorePassword = httpsKeystorePassword; 42 this.httpsKeyPassword =httpsKeyPassword; 43 } 44 } | Popular Tags |