use of com.haulmont.cuba.core.config.AppPropertiesLocator in project cuba by cuba-platform.
the class AppPropertiesDatasource method loadAppPropertyEntities.
public List<AppPropertyEntity> loadAppPropertyEntities() {
ConfigStorageService configStorageService = AppBeans.get(ConfigStorageService.class);
List<AppPropertyEntity> entities = configStorageService.getAppProperties();
AppPropertiesLocator appPropertiesLocator = AppBeans.get(AppPropertiesLocator.class);
entities.addAll(appPropertiesLocator.getAppProperties());
return entities;
}
Aggregations