File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
beanSystem/core/src/sap/commerce/toolset/beanSystem/settings
typeSystem/core/src/sap/commerce/toolset/typeSystem/settings Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ import sap.commerce.toolset.beanSystem.settings.event.BSViewSettingsListener
2525import sap.commerce.toolset.beanSystem.settings.state.BSViewSettingsState
2626import sap.commerce.toolset.beanSystem.settings.state.ChangeType
2727
28- @State(name = " [y] Bean System View settings" , category = SettingsCategory .PLUGINS )
29- @Storage(value = HybrisConstants .STORAGE_HYBRIS_BS_VIEW , roamingType = RoamingType .LOCAL )
28+ @State(
29+ name = " [y] Bean System View settings" ,
30+ category = SettingsCategory .PLUGINS ,
31+ storages = [Storage (value = HybrisConstants .STORAGE_HYBRIS_BS_VIEW , roamingType = RoamingType .LOCAL )]
32+ )
3033@Service(Service .Level .PROJECT )
3134class BSViewSettings (private val project : Project ) : SerializablePersistentStateComponent<BSViewSettingsState>(BSViewSettingsState ()) {
3235
Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ import sap.commerce.toolset.typeSystem.settings.event.TSViewSettingsListener
2525import sap.commerce.toolset.typeSystem.settings.state.ChangeType
2626import sap.commerce.toolset.typeSystem.settings.state.TSViewSettingsState
2727
28- @State(name = " [y] Type System View settings" , category = SettingsCategory .PLUGINS )
29- @Storage(value = HybrisConstants .STORAGE_HYBRIS_TS_VIEW , roamingType = RoamingType .LOCAL )
28+ @State(
29+ name = " [y] Type System View settings" ,
30+ category = SettingsCategory .PLUGINS ,
31+ storages = [Storage (value = HybrisConstants .STORAGE_HYBRIS_TS_VIEW , roamingType = RoamingType .LOCAL )]
32+ )
3033@Service(Service .Level .PROJECT )
3134class TSViewSettings (private val project : Project ) : SerializablePersistentStateComponent<TSViewSettingsState>(TSViewSettingsState ()) {
3235
You can’t perform that action at this time.
0 commit comments