Some small changes to method names

This commit is contained in:
Ziver Koc 2015-07-15 12:58:30 +00:00
parent 4ece2b0cd2
commit 1053713d15
13 changed files with 61 additions and 167 deletions

View file

@ -9,7 +9,6 @@ public class ApacheConfigVirtualHost extends DBBean{
protected String domain;
protected String path;
protected boolean ssl;
protected boolean tomcat;
@ -31,10 +30,4 @@ public class ApacheConfigVirtualHost extends DBBean{
public void setSSL(boolean ssl) {
this.ssl = ssl;
}
public boolean isTomcatApp() {
return tomcat;
}
public void setTomcatApp(boolean tomcat) {
this.tomcat = tomcat;
}
}