Serialized Form
-
Package org.openwms.core.preferences
-
Exception Class org.openwms.core.preferences.NotAuthorizedException
class NotAuthorizedException extends org.ameba.exception.BusinessRuntimeException implements Serializable -
Class org.openwms.core.preferences.PreferencesEvent
class PreferencesEvent extends org.openwms.core.event.RootApplicationEvent implements Serializable-
Serialized Fields
-
type
PreferencesEvent.Type type
-
-
-
-
Package org.openwms.core.preferences.api
-
Class org.openwms.core.preferences.api.ApplicationPreferenceVO
class ApplicationPreferenceVO extends PreferenceVO implements Serializable -
Class org.openwms.core.preferences.api.ModulePreferenceVO
class ModulePreferenceVO extends PreferenceVO implements Serializable -
Class org.openwms.core.preferences.api.RolePreferenceVO
class RolePreferenceVO extends PreferenceVO implements Serializable -
Class org.openwms.core.preferences.api.UserPreferenceVO
class UserPreferenceVO extends PreferenceVO implements Serializable
-
-
Package org.openwms.core.preferences.api.messages
-
Class org.openwms.core.preferences.api.messages.PreferenceMO
class PreferenceMO extends Object implements Serializable-
Serialized Fields
-
description
String description
A descriptive text of thePreference
. -
groupName
String groupName
The name of the group thePreference
is assigned to. -
key
@NotBlank String key
The unique business key (along other identifying properties) of the resource, must not be null. -
owner
String owner
The owner of the resource. -
pKey
String pKey
The persistent key of the resource. -
type
String type
The type of thePreference
. -
val
Serializable val
The value of thePreference
.
-
-
-
-
Package org.openwms.core.preferences.impl.file
-
Class org.openwms.core.preferences.impl.file.AbstractPreference
class AbstractPreference extends Object implements Serializable -
Class org.openwms.core.preferences.impl.file.ApplicationPreference
class ApplicationPreference extends GenericPreference implements Serializable-
Serialized Fields
-
key
String key
Key of the preference (not nullable).
-
-
-
Class org.openwms.core.preferences.impl.file.GenericPreference
class GenericPreference extends AbstractPreference implements Serializable -
Class org.openwms.core.preferences.impl.file.ModulePreference
class ModulePreference extends GenericPreference implements Serializable -
Class org.openwms.core.preferences.impl.file.PreferenceKey
class PreferenceKey extends Object implements Serializable-
Serialized Fields
-
fields
String[] fields
-
-
-
Class org.openwms.core.preferences.impl.file.Preferences
class Preferences extends Object implements Serializable-
Serialized Fields
-
applicationOrRoleOrUserOrModule
List<GenericPreference> applicationOrRoleOrUserOrModule
-
applications
List<ApplicationPreference> applications
-
modules
List<ModulePreference> modules
-
roles
List<RolePreference> roles
-
users
List<UserPreference> users
-
-
-
Class org.openwms.core.preferences.impl.file.RolePreference
class RolePreference extends GenericPreference implements Serializable-
Serialized Fields
-
key
String key
Key value of theRolePreference
. -
owner
String owner
Owner of theRolePreference
.
-
-
-
Class org.openwms.core.preferences.impl.file.UserPreference
class UserPreference extends GenericPreference implements Serializable-
Serialized Fields
-
key
String key
Key value of theUserPreference
. -
owner
String owner
Owner of theUserPreference
.
-
-
-
-
Package org.openwms.core.preferences.impl.jpa
-
Class org.openwms.core.preferences.impl.jpa.PreferenceEO
class PreferenceEO extends org.ameba.integration.jpa.ApplicationEntity implements Serializable-
Serialized Fields
-
defValue
@Size(max=4096) String defValue
The default value of thePreferenceEO
. -
description
@Size(max=255) String description
Description text of thePreferenceEO
. -
fromFile
boolean fromFile
Flag to remember if the preference was originally imported from a file. -
groupName
@Size(max=36) String groupName
The name of the group thePreferenceEO
is assigned to. -
key
@NotBlank @Size(min=1,max=60) String key
Key field of thePreferenceEO
. -
maxValue
@Size(max=4096) String maxValue
The maximum value of thePreferenceEO
. -
minValue
@Size(max=4096) String minValue
The minimum value of thePreferenceEO
. -
owner
@Size(max=60) String owner
-
scope
@NotNull PropertyScope scope
Scope of this preference. -
type
@NotNull PreferenceType type
Type of this preference. -
val
@Size(max=4096) String val
A current value of thePreferenceEO
.
-
-
-