Uses of Enum Class
org.openwms.core.preferences.PropertyScope
Package
Description
Contains classes dealing with preferences belonging to the schema http://www.openwms.org/schema/preferences.
Contains the internal implementation of the component.
Contains the persistence model and access objects.
-
Uses of PropertyScope in org.openwms.core.preferences
Modifier and TypeMethodDescriptionprivate PropertyScope
static PropertyScope
Returns the enum constant of this class with the specified name.static PropertyScope[]
PropertyScope.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionboolean
PreferencesService.existsForOwnerAndScopeAndKey
(String owner, @NotNull PropertyScope scope, @NotBlank String key) Checks whether aPreference
of a specificscope
that belongs to the givenowner
and has the givenkey
exists.@NotNull Collection
<PreferenceEO> PreferencesService.findForOwnerAndScope
(String owner, @NotNull PropertyScope scope) Find and return allPreferences
of a specificscope
that belong to the givenowner
.PreferencesService.findForOwnerAndScopeAndKey
(String owner, @NotNull PropertyScope scope, @NotBlank String key) Find and return thePreference
of a specificscope
that belongs to the givenowner
and has the givenkey
.PreferencesService.findForScopeOwnerGroupName
(String owner, @NotNull PropertyScope scope, @NotBlank String groupName) Find and return allPreference
s that belong to a group with the samegroupName
. -
Uses of PropertyScope in org.openwms.core.preferences.impl
Modifier and TypeMethodDescriptionstatic <T extends PreferenceVO>
PropertyScopePreferenceVOConverter.resolveScope
(T preference) -
Uses of PropertyScope in org.openwms.core.preferences.impl.jpa
Modifier and TypeFieldDescriptionprivate @NotNull PropertyScope
PreferenceEO.Builder.scope
protected @NotNull PropertyScope
PreferenceEO.scope
Scope of this preference.Modifier and TypeMethodDescriptionprivate void
PreferencesServiceImpl.ensureUserPreferenceAccess
(String owner, PropertyScope scope) boolean
PreferencesServiceImpl.existsForOwnerAndScopeAndKey
(String owner, @NotNull PropertyScope scope, @NotBlank String key) Checks whether aPreference
of a specificscope
that belongs to the givenowner
and has the givenkey
exists.PreferenceRepository.findByOwnerAndScope
(String owner, PropertyScope scope) PreferenceRepository.findByOwnerAndScopeAndGroupName
(String owner, PropertyScope scope, String groupName) PreferenceRepository.findByOwnerAndScopeAndKey
(String owner, PropertyScope scope, String key) @NotNull Collection
<PreferenceEO> PreferencesServiceImpl.findForOwnerAndScope
(String owner, @NotNull PropertyScope scope) Find and return allPreferences
of a specificscope
that belong to the givenowner
.PreferencesServiceImpl.findForOwnerAndScopeAndKey
(String owner, @NotNull PropertyScope scope, @NotBlank String key) Find and return thePreference
of a specificscope
that belongs to the givenowner
and has the givenkey
.PreferencesServiceImpl.findForScopeOwnerGroupName
(String owner, @NotNull PropertyScope scope, @NotBlank String groupName) Find and return allPreference
s that belong to a group with the samegroupName
.PreferenceEO.Builder.scope
(@NotNull PropertyScope val) void
PreferenceEO.setScope
(PropertyScope scope) private void
PreferencesServiceImpl.verifyDoesNotExist
(String owner, PropertyScope scope, String key)