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 Details

    • groupAttributeId

      protected Long groupAttributeId
      Holds a unique identifier of the Group Attribute which can be associated with Auth Group and Privilege.
    • groupAttributeCreatedBy

      protected Long 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

      protected Date 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

      protected Long 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

      protected Date 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

      public GroupAttributeVO(GroupAttribute groupAttributes)
      Instantiates a new group attributes value object.
      Parameters:
      groupAttributes - a GroupAttribute object.