private void setupSitePropertiesService() throws Exception { sitePropertiesService = new SitePropertiesServiceImpl(); sitePropertiesService.setHomeService(homeService); sitePropertiesService.setResourceLoader(resourceLoader); sitePropertiesService.afterPropertiesSet(); }
private Boolean getBooleanProp(String propertyName) { return sitePropertiesService.getPropertyAsBoolean(propertyName, siteKey); }
private Integer getIntegerProp(String propertyName) { return sitePropertiesService.getPropertyAsInteger(propertyName, siteKey); }
private String getProp(String propertyName) { return sitePropertiesService.getProperty(propertyName, siteKey); }