return systemProperties.getPreviewCache();
}
public WebappLocationBean getWebappLocation(final String protocol,final String address,final int port,final String webappName) {
try {
return new WebappLocationBean(protocol, address, port, webappName);
} catch (MalformedURLException e) {
return getDefaultWebappLocation();
}
}