Serialized Form
-
Package org.openwms.core.uaa
-
Exception Class org.openwms.core.uaa.InvalidPasswordException
class InvalidPasswordException extends org.openwms.core.exception.DomainModelException implements Serializable
-
-
Package org.openwms.core.uaa.api
-
Class org.openwms.core.uaa.api.AuthenticatedUserVO
class AuthenticatedUserVO extends UserVO implements Serializable-
Serialized Fields
-
password
String password
The User's current password.
-
-
-
Class org.openwms.core.uaa.api.EmailVO
class EmailVO extends Object implements Serializable -
Class org.openwms.core.uaa.api.GrantVO
-
Class org.openwms.core.uaa.api.PasswordString
class PasswordString extends Object implements Serializable-
Serialized Fields
-
password
CharSequence password
-
-
-
Class org.openwms.core.uaa.api.RoleVO
-
Serialized Fields
-
grants
Set<SecurityObjectVO> grants
A collection of Grants that are assigned to the Role. -
immutable
Boolean immutable
Whether this Role is immutable or not. Immutable Roles can't be modified. -
users
Set<UserVO> users
All Users assigned to the Role.
-
-
-
Class org.openwms.core.uaa.api.SecurityObjectVO
class SecurityObjectVO extends org.ameba.http.AbstractBase<T extends SecurityObjectVO<T>> implements Serializable-
Serialized Fields
-
description
String description
A descriptive text for the SecurityObject. -
name
@NotBlank(groups={Create.class,Modify.class}) String name
Unique name of the SecurityObject. -
pKey
String pKey
The persistent key.
-
-
-
Class org.openwms.core.uaa.api.UserDetailsVO
class UserDetailsVO extends Object implements Serializable-
Serialized Fields
-
comment
String comment
Any comment text added to the User. -
department
String department
The User's department. -
description
String description
Some descriptive text about the User. -
gender
String gender
The User's gender. -
im
String im
The User's messenger name. -
image
String image
A base64 encoded image file. -
office
String office
The User's office. -
phoneNo
String phoneNo
The User's phone number.
-
-
-
Class org.openwms.core.uaa.api.UserVO
class UserVO extends org.ameba.http.AbstractBase<UserVO> implements Serializable-
Serialized Fields
-
emailAddresses
@NotEmpty(groups={Create.class,Modify.class}) List<EmailVO> emailAddresses
The User's email addresses. -
enabled
Boolean enabled
If the User is generally enabled in the system. -
expirationDate
ZonedDateTime expirationDate
When the password expires. -
extern
Boolean extern
If the User is authenticated against an external system. -
fullname
String fullname
The Users full name. -
lastPasswordChange
@Null(groups={Create.class,Modify.class}) ZonedDateTime lastPasswordChange
When the password has been changed the last time. -
locked
Boolean locked
If the User is locked from login. -
pKey
@Null(groups=Create.class) @NotBlank(groups=Modify.class) String pKey
The persistent key. -
roleNames
List<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 username
The User's unique name.
-
-
-
-
Package org.openwms.core.uaa.impl
-
Class org.openwms.core.uaa.impl.Email
class Email extends org.ameba.integration.jpa.BaseEntity implements Serializable -
Class org.openwms.core.uaa.impl.Grant
class Grant extends SecurityObject implements Serializable -
Class org.openwms.core.uaa.impl.GrantEvent
class GrantEvent extends org.openwms.core.event.RootApplicationEvent implements Serializable-
Serialized Fields
-
type
GrantEvent.EventType type
-
-
-
Class org.openwms.core.uaa.impl.Role
class Role extends SecurityObject implements Serializable-
Serialized Fields
-
grants
Set<SecurityObject> grants
AllSecurityObject
s assigned to the Role. -
immutable
Boolean immutable
Whether or not this Role is immutable. Immutable Roles can't be modified. -
users
Set<User> users
AllUser
s assigned to the Role.
-
-
-
Class org.openwms.core.uaa.impl.RoleEvent
class RoleEvent extends org.openwms.core.event.RootApplicationEvent implements Serializable-
Serialized Fields
-
type
RoleEvent.EventType type
-
-
-
Class org.openwms.core.uaa.impl.SecureUser
class SecureUser extends Object implements Serializable-
Serialized Fields
-
accountNonExpired
boolean accountNonExpired
-
accountNonLocked
boolean accountNonLocked
-
authorities
List<? extends org.springframework.security.core.GrantedAuthority> authorities
-
credentialsNonExpired
boolean credentialsNonExpired
-
enabled
boolean enabled
-
password
char[] password
-
username
String username
-
-
-
Class org.openwms.core.uaa.impl.SecurityObject
class SecurityObject extends org.ameba.integration.jpa.ApplicationEntity implements Serializable-
Serialized Fields
-
description
String description
A descriptive text for theSecurityObject
. -
name
@NotBlank(groups={Create.class,Modify.class}) String name
Unique name of theSecurityObject
.
-
-
-
Class org.openwms.core.uaa.impl.SystemUser
class SystemUser extends User implements Serializable -
Class org.openwms.core.uaa.impl.SystemUserWrapper
class SystemUserWrapper extends UserWrapper implements Serializable-
Serialized Fields
-
password
String password
-
-
-
Class org.openwms.core.uaa.impl.User
class User extends org.ameba.integration.jpa.ApplicationEntity implements Serializable-
Serialized Fields
-
emailAddresses
Set<Email> emailAddresses
Email addresses. -
enabled
boolean enabled
true
if the User is enabled. This field can be managed by the UI application to lock the User manually. -
expirationDate
ZonedDateTime expirationDate
Date when the account expires. After account expiration, the User cannot login anymore. -
extern
boolean extern
true
if the User is authenticated by an external system, otherwisefalse
. -
fullname
String fullname
The User's fullname (doesn't have to be unique). -
lastPasswordChange
ZonedDateTime lastPasswordChange
Date of the last password change. -
locked
boolean locked
true
if this User is locked and has no permission to login. -
password
String password
The User's current password (only kept transient). -
passwords
List<UserPassword> passwords
Last passwords of the User. -
persistedPassword
String persistedPassword
The User's current password. -
roles
List<Role> roles
List ofRole
s assigned to the User. -
userDetails
UserDetails userDetails
More detail information of the User. -
username
@NotEmpty String username
Unique identifier of this User (not nullable).
-
-
-
Class org.openwms.core.uaa.impl.UserDetails
class UserDetails extends Object implements Serializable-
Serialized Fields
-
comment
String comment
Some comment text of theUser
. -
department
String department
Department description assigned to theUser
. -
description
String description
Some descriptive text of theUser
. -
gender
UserDetails.Gender gender
Gender of theUser
. -
im
String im
IM account assigned to theUser
. -
image
byte[] image
An image of theUser
. -
office
String office
Office description assigned to theUser
. -
phoneNo
String phoneNo
Phone number assigned to theUser
.
-
-
-
Class org.openwms.core.uaa.impl.UserEvent
class UserEvent extends org.openwms.core.event.RootApplicationEvent implements Serializable-
Serialized Fields
-
type
UserEvent.EventType type
-
-
-
Class org.openwms.core.uaa.impl.UserPassword
class UserPassword extends org.ameba.integration.jpa.BaseEntity implements Serializable-
Serialized Fields
-
password
String password
Password. -
passwordChanged
ZonedDateTime passwordChanged
Date of the last password change. -
user
User user
User
assigned to this password.
-
-
-
Class org.openwms.core.uaa.impl.UserWrapper
class UserWrapper extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
authorities
Collection<org.springframework.security.core.GrantedAuthority> authorities
-
user
User user
-
-