Package io.jmix.appsettings
Interface AppSettings
- All Known Implementing Classes:
AppSettingsImpl
public interface AppSettings
-
Method Summary
Modifier and TypeMethodDescription<T extends AppSettingsEntity>
TLoads application settings entity of typeT.<T extends AppSettingsEntity>
voidsave(T settingsEntityToSave) Saves application settings entity of typeT.
-
Method Details
-
load
Loads application settings entity of typeT. Note, that in default implementation attributes with empty values will be replaced with default values if specified.- Parameters:
clazz- class of entity that extendsAppSettingsEntity
-
save
Saves application settings entity of typeT. Note, that in default implementation attributes with values equal to default will be overridden with null value.- Parameters:
settingsEntityToSave- entity to be saved
-