Methods Summary |
---|
public VirtualServerInfo | getHttpVS()Getter for property httpVS.
return this.httpVS;
|
public VirtualServerInfo | getHttpsVS()Getter for property httpsVS.
return this.httpsVS;
|
public java.net.URL | getWebServerRootURL(boolean secure)
if (secure) {
if (httpsVS!=null)
return httpsVS.getWebServerRootURL();
} else {
if (httpVS!=null)
return httpVS.getWebServerRootURL();
}
return null;
|
public void | setHttpVS(VirtualServerInfo httpVS)Setter for property httpVS.
this.httpVS = httpVS;
|
public void | setHttpsVS(VirtualServerInfo httpsVS)Setter for property httpsVS.
this.httpsVS = httpsVS;
|