Initial commit
This commit is contained in:
commit
aa4e110832
69 changed files with 17898 additions and 0 deletions
40
src/wa/server/plugin/apache/ApacheConfigVirtualHost.java
Normal file
40
src/wa/server/plugin/apache/ApacheConfigVirtualHost.java
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
package wa.server.plugin.apache;
|
||||
|
||||
import wa.server.WAConstants;
|
||||
import zutil.db.bean.DBBean;
|
||||
import zutil.db.bean.DBBean.DBTable;;
|
||||
|
||||
@DBTable(WAConstants.DB_TABLE_PREFIX+"_apache_vhost")
|
||||
public class ApacheConfigVirtualHost extends DBBean{
|
||||
protected String domain;
|
||||
protected String path;
|
||||
protected boolean ssl;
|
||||
protected boolean tomcat;
|
||||
|
||||
|
||||
|
||||
public String getDomain() {
|
||||
return domain;
|
||||
}
|
||||
public void setDomain(String domain) {
|
||||
this.domain = domain;
|
||||
}
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
public boolean isSSL() {
|
||||
return ssl;
|
||||
}
|
||||
public void setSSL(boolean ssl) {
|
||||
this.ssl = ssl;
|
||||
}
|
||||
public boolean isTomcatApp() {
|
||||
return tomcat;
|
||||
}
|
||||
public void setTomcatApp(boolean tomcat) {
|
||||
this.tomcat = tomcat;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue