218219220221222223224225
* @throws JWIGException * if an error occurred when reading configuration properties */ public WebSite() throws JWIGException { webapps = new ArrayList<WebApp>(); configuration = new Config(); configuration.loadProperties(); }
2930313233343536373839
/** * Constructs a new web application object. */ public WebApp() { super(); configuration = new Config(); WebSite webSite = getWebSite(); Querier querier; if (webSite != null) { querier = webSite.getQuerier(); } else {