Interface ProfileSettingStorage
public interface ProfileSettingStorage
-
Method Summary
Modifier and TypeMethodDescriptionvoidDeletes a profilePropertySetting by profilePropertySetting id.Gets a list of available profile settings.Gets a list of available synchronized settingssaveProfilePropertySetting(ProfilePropertySetting profilePropertySetting, boolean isNew) Saves a profilePropertySetting.
-
Method Details
-
getPropertySettings
List<ProfilePropertySetting> getPropertySettings()Gets a list of available profile settings.- Returns:
- the list of profile settings.
-
getSynchronizedPropertySettings
List<ProfilePropertySetting> getSynchronizedPropertySettings()Gets a list of available synchronized settings- Returns:
ListofProfilePropertySetting
-
findProfileSettingByName
-
getProfileSettingById
-
saveProfilePropertySetting
ProfilePropertySetting saveProfilePropertySetting(ProfilePropertySetting profilePropertySetting, boolean isNew) Saves a profilePropertySetting. If isNew is true, creates new profilePropertySetting. If not only updates profilePropertySetting and saves it.- Parameters:
profilePropertySetting-isNew-
-
deleteProfilePropertySetting
Deletes a profilePropertySetting by profilePropertySetting id.- Parameters:
id-
-