Class GroupAttributeVO
java.lang.Object
com.skava.core.validation.InputModel
com.skava.auth.model.rest.entities.GroupAttributeVO
- All Implemented Interfaces:
Serializable
public class GroupAttributeVO
extends com.skava.core.validation.InputModel
Data transfer class holds the privilege attribute of the group.
- Author:
- Infosys Equinox
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Long
Indicates the user who created this entry.protected Date
Indicates the date and time that this entry was created.protected Long
Holds a unique identifier of the Group Attribute which can be associated with Auth Group and Privilege.protected Long
Indicates the user who updated this entry.protected Date
Indicates the date and time that this entry was updated. -
Constructor Summary
ConstructorsConstructorDescriptionInstantiates a new group attributes value object.GroupAttributeVO
(GroupAttribute groupAttributes) Instantiates a new group attributes value object. -
Method Summary
-
Field Details
-
groupAttributeId
Holds a unique identifier of the Group Attribute which can be associated with Auth Group and Privilege. -
groupAttributeCreatedBy
Indicates the user who created this entry. This is a unique identifier which can be used to identify a user. This data is generated and maintained by the User microservice and logically referred in this microservice. -
groupAttributeCreatedTimestamp
Indicates the date and time that this entry was created. The date and time is specified using the format: YYYY-MM-DD HH:MM:SS. For example, 2018-05-10 01:16:17 -
groupAttributeUpdatedBy
Indicates the user who updated this entry. This is a unique identifier which can be used to identify a user. This data is generated and maintained by the User microservice and logically referred in this microservice. -
groupAttributeUpdatedTimestamp
Indicates the date and time that this entry was updated. The date and time is specified using the format: YYYY-MM-DD HH:MM:SS. For example, 2018-05-10 01:16:17
-
-
Constructor Details
-
GroupAttributeVO
public GroupAttributeVO()Instantiates a new group attributes value object. -
GroupAttributeVO
Instantiates a new group attributes value object.- Parameters:
groupAttributes
- aGroupAttribute
object.
-