Serialized Form
- 
Package org.openwms.core.uaa- 
Exception Class org.openwms.core.uaa.InvalidPasswordExceptionclass InvalidPasswordException extends org.openwms.core.exception.DomainModelException implements Serializable
 
- 
- 
Package org.openwms.core.uaa.api- 
Class org.openwms.core.uaa.api.AuthenticatedUserVOclass AuthenticatedUserVO extends UserVO implements Serializable- 
Serialized Fields- 
passwordString password The User's current password.
 
- 
 
- 
- 
Class org.openwms.core.uaa.api.EmailVOclass EmailVO extends Object implements Serializable
- 
Class org.openwms.core.uaa.api.GrantVO
- 
Class org.openwms.core.uaa.api.PasswordStringclass PasswordString extends Object implements Serializable- 
Serialized Fields- 
passwordCharSequence password 
 
- 
 
- 
- 
Class org.openwms.core.uaa.api.RoleVO- 
Serialized Fields- 
grantsSet<SecurityObjectVO> grants A collection of Grants that are assigned to the Role.
- 
immutableBoolean immutable Whether this Role is immutable or not. Immutable Roles can't be modified.
- 
usersSet<UserVO> users All Users assigned to the Role.
 
- 
 
- 
- 
Class org.openwms.core.uaa.api.SecurityObjectVOclass SecurityObjectVO extends org.ameba.http.AbstractBase<T extends SecurityObjectVO<T>> implements Serializable- 
Serialized Fields- 
descriptionString description A descriptive text for the SecurityObject.
- 
name@NotBlank(groups={Create.class,Modify.class}) String nameUnique name of the SecurityObject.
- 
pKeyString pKey The persistent key.
 
- 
 
- 
- 
Class org.openwms.core.uaa.api.UserDetailsVOclass UserDetailsVO extends Object implements Serializable- 
Serialized Fields- 
commentString comment Any comment text added to the User.
- 
departmentString department The User's department.
- 
descriptionString description Some descriptive text about the User.
- 
genderString gender The User's gender.
- 
imString im The User's messenger name.
- 
imageString image A base64 encoded image file.
- 
officeString office The User's office.
- 
phoneNoString phoneNo The User's phone number.
 
- 
 
- 
- 
Class org.openwms.core.uaa.api.UserVOclass UserVO extends org.ameba.http.AbstractBase<UserVO> implements Serializable- 
Serialized Fields- 
emailAddresses@NotEmpty(groups={Create.class,Modify.class}) List<EmailVO> emailAddressesThe User's email addresses.
- 
enabledBoolean enabled If the User is generally enabled in the system.
- 
expirationDateZonedDateTime expirationDate When the password expires.
- 
externBoolean extern If the User is authenticated against an external system.
- 
fullnameString fullname The Users full name.
- 
lastPasswordChange@Null(groups={Create.class,Modify.class}) ZonedDateTime lastPasswordChangeWhen the password has been changed the last time.
- 
lockedBoolean locked If the User is locked from login.
- 
pKey@Null(groups=Create.class) @NotBlank(groups=Modify.class) String pKey The persistent key.
- 
roleNamesList<String> roleNames The User's assigned role names.
- 
userDetails@Valid UserDetailsVO userDetails More specific details of the User.
- 
username@NotBlank(groups={Create.class,Modify.class}) String usernameThe User's unique name.
 
- 
 
- 
 
- 
- 
Package org.openwms.core.uaa.impl- 
Class org.openwms.core.uaa.impl.Emailclass Email extends org.ameba.integration.jpa.BaseEntity implements Serializable
- 
Class org.openwms.core.uaa.impl.Grantclass Grant extends SecurityObject implements Serializable
- 
Class org.openwms.core.uaa.impl.GrantEventclass GrantEvent extends org.openwms.core.event.RootApplicationEvent implements Serializable- 
Serialized Fields- 
typeGrantEvent.EventType type 
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.Roleclass Role extends SecurityObject implements Serializable- 
Serialized Fields- 
grantsSet<SecurityObject> grants AllSecurityObjects assigned to the Role.
- 
immutableBoolean immutable Whether or not this Role is immutable. Immutable Roles can't be modified.
- 
usersSet<User> users AllUsers assigned to the Role.
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.RoleEventclass RoleEvent extends org.openwms.core.event.RootApplicationEvent implements Serializable- 
Serialized Fields- 
typeRoleEvent.EventType type 
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.SecureUserclass SecureUser extends Object implements Serializable- 
Serialized Fields- 
accountNonExpiredboolean accountNonExpired 
- 
accountNonLockedboolean accountNonLocked 
- 
authoritiesList<? extends org.springframework.security.core.GrantedAuthority> authorities 
- 
credentialsNonExpiredboolean credentialsNonExpired 
- 
enabledboolean enabled 
- 
passwordchar[] password 
- 
usernameString username 
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.SecurityObjectclass SecurityObject extends org.ameba.integration.jpa.ApplicationEntity implements Serializable- 
Serialized Fields- 
descriptionString description A descriptive text for theSecurityObject.
- 
name@NotBlank(groups={Create.class,Modify.class}) String nameUnique name of theSecurityObject.
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.SystemUserclass SystemUser extends User implements Serializable
- 
Class org.openwms.core.uaa.impl.SystemUserWrapperclass SystemUserWrapper extends UserWrapper implements Serializable- 
Serialized Fields- 
passwordString password 
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.Userclass User extends org.ameba.integration.jpa.ApplicationEntity implements Serializable- 
Serialized Fields- 
emailAddressesSet<Email> emailAddresses Email addresses.
- 
enabledboolean enabled trueif the User is enabled. This field can be managed by the UI application to lock the User manually.
- 
expirationDateZonedDateTime expirationDate Date when the account expires. After account expiration, the User cannot login anymore.
- 
externboolean extern trueif the User is authenticated by an external system, otherwisefalse.
- 
fullnameString fullname The User's fullname (doesn't have to be unique).
- 
lastPasswordChangeZonedDateTime lastPasswordChange Date of the last password change.
- 
lockedboolean locked trueif this User is locked and has no permission to login.
- 
passwordString password The User's current password (only kept transient).
- 
passwordsList<UserPassword> passwords Last passwords of the User.
- 
persistedPasswordString persistedPassword The User's current password.
- 
rolesList<Role> roles List ofRoles assigned to the User.
- 
userDetailsUserDetails userDetails More detail information of the User.
- 
username@NotEmpty String username Unique identifier of this User (not nullable).
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.UserDetailsclass UserDetails extends Object implements Serializable- 
Serialized Fields- 
commentString comment Some comment text of theUser.
- 
departmentString department Department description assigned to theUser.
- 
descriptionString description Some descriptive text of theUser.
- 
genderUserDetails.Gender gender Gender of theUser.
- 
imString im IM account assigned to theUser.
- 
imagebyte[] image An image of theUser.
- 
officeString office Office description assigned to theUser.
- 
phoneNoString phoneNo Phone number assigned to theUser.
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.UserEventclass UserEvent extends org.openwms.core.event.RootApplicationEvent implements Serializable- 
Serialized Fields- 
typeUserEvent.EventType type 
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.UserPasswordclass UserPassword extends org.ameba.integration.jpa.BaseEntity implements Serializable- 
Serialized Fields- 
passwordString password Password.
- 
passwordChangedZonedDateTime passwordChanged Date of the last password change.
- 
userUser user Userassigned to this password.
 
- 
 
- 
- 
Class org.openwms.core.uaa.impl.UserWrapperclass UserWrapper extends Object implements Serializable- serialVersionUID:
- 1L
 - 
Serialized Fields- 
authoritiesCollection<org.springframework.security.core.GrantedAuthority> authorities 
- 
userUser user 
 
- 
 
 
-