Package com.soffid.iam.api
Class GroupUser
- java.lang.Object
-
- com.soffid.iam.api.GroupUser
-
- All Implemented Interfaces:
Serializable
public class GroupUser extends Object implements Serializable
ValueObject GroupUser- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GroupUser()
GroupUser(GroupUser otherBean)
GroupUser(String user, String group)
GroupUser(String user, String group, String groupDescription, Long groupId, Long id, Long userId, String fullName, String info, Date start, Date end, Boolean disabled, Boolean primaryGroup, Map<String,Object> attributes)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getAttributes()
Gets value for attribute attributesBoolean
getDisabled()
Gets value for attribute disabledDate
getEnd()
Gets value for attribute endString
getFullName()
Gets value for attribute fullNameString
getGroup()
Gets value for attribute groupString
getGroupDescription()
Gets value for attribute groupDescriptionLong
getGroupId()
Gets value for attribute groupIdLong
getId()
Gets value for attribute idString
getInfo()
Gets value for attribute infoBoolean
getPrimaryGroup()
Gets value for attribute primaryGroupDate
getStart()
Gets value for attribute startString
getUser()
Gets value for attribute userLong
getUserId()
Gets value for attribute userIdvoid
setAttributes(Map<String,Object> attributes)
Sets value for attribute attributesvoid
setDisabled(Boolean disabled)
Sets value for attribute disabledvoid
setEnd(Date end)
Sets value for attribute endvoid
setFullName(String fullName)
Sets value for attribute fullNamevoid
setGroup(String group)
Sets value for attribute groupvoid
setGroupDescription(String groupDescription)
Sets value for attribute groupDescriptionvoid
setGroupId(Long groupId)
Sets value for attribute groupIdvoid
setId(Long id)
Sets value for attribute idvoid
setInfo(String info)
Sets value for attribute infovoid
setPrimaryGroup(Boolean primaryGroup)
Sets value for attribute primaryGroupvoid
setStart(Date start)
Sets value for attribute startvoid
setUser(String user)
Sets value for attribute uservoid
setUserId(Long userId)
Sets value for attribute userIdstatic GroupUser
toGroupUser(UsuariGrup vo)
Creates a GroupUser value object based on a UsuariGrup object.static void
toGroupUser(UsuariGrup source, GroupUser target)
Updates a GroupUser value object based on a UsuariGrup object.static GroupUser[]
toGroupUserArray(UsuariGrup[] source)
Creates a GroupUser array on a UsuariGrup array.static AsyncList<GroupUser>
toGroupUserAsyncList(AsyncList<UsuariGrup> source)
Creates a GroupUser asynclist on a UsuariGrup collection.static PagedResult<GroupUser>
toGroupUserList(PagedResult<UsuariGrup> source)
Creates a GroupUser pagedResult on a UsuariGrup collection.static List<GroupUser>
toGroupUserList(Collection<UsuariGrup> source)
Creates a GroupUser list on a UsuariGrup collection.String
toString()
Returns a string representation of the value object.
-
-
-
Constructor Detail
-
GroupUser
public GroupUser()
-
GroupUser
public GroupUser(String user, String group, String groupDescription, Long groupId, Long id, Long userId, String fullName, String info, Date start, Date end, Boolean disabled, Boolean primaryGroup, Map<String,Object> attributes)
-
GroupUser
public GroupUser(GroupUser otherBean)
-
-
Method Detail
-
getUser
public String getUser()
Gets value for attribute user
-
setUser
public void setUser(String user)
Sets value for attribute user
-
getGroup
public String getGroup()
Gets value for attribute group
-
setGroup
public void setGroup(String group)
Sets value for attribute group
-
getGroupDescription
public String getGroupDescription()
Gets value for attribute groupDescription
-
setGroupDescription
public void setGroupDescription(String groupDescription)
Sets value for attribute groupDescription
-
getGroupId
public Long getGroupId()
Gets value for attribute groupId
-
setGroupId
public void setGroupId(Long groupId)
Sets value for attribute groupId
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getUserId
public Long getUserId()
Gets value for attribute userId
-
setUserId
public void setUserId(Long userId)
Sets value for attribute userId
-
getFullName
public String getFullName()
Gets value for attribute fullName
-
setFullName
public void setFullName(String fullName)
Sets value for attribute fullName
-
getInfo
public String getInfo()
Gets value for attribute info
-
setInfo
public void setInfo(String info)
Sets value for attribute info
-
getStart
public Date getStart()
Gets value for attribute start
-
setStart
public void setStart(Date start)
Sets value for attribute start
-
getEnd
public Date getEnd()
Gets value for attribute end
-
setEnd
public void setEnd(Date end)
Sets value for attribute end
-
getDisabled
public Boolean getDisabled()
Gets value for attribute disabled
-
setDisabled
public void setDisabled(Boolean disabled)
Sets value for attribute disabled
-
getPrimaryGroup
public Boolean getPrimaryGroup()
Gets value for attribute primaryGroup
-
setPrimaryGroup
public void setPrimaryGroup(Boolean primaryGroup)
Sets value for attribute primaryGroup
-
setAttributes
public void setAttributes(Map<String,Object> attributes)
Sets value for attribute attributes
-
toString
public String toString()
Returns a string representation of the value object.
-
toGroupUser
public static GroupUser toGroupUser(UsuariGrup vo)
Creates a GroupUser value object based on a UsuariGrup object.
-
toGroupUserList
public static List<GroupUser> toGroupUserList(Collection<UsuariGrup> source)
Creates a GroupUser list on a UsuariGrup collection.
-
toGroupUserList
public static PagedResult<GroupUser> toGroupUserList(PagedResult<UsuariGrup> source)
Creates a GroupUser pagedResult on a UsuariGrup collection.
-
toGroupUserAsyncList
public static AsyncList<GroupUser> toGroupUserAsyncList(AsyncList<UsuariGrup> source)
Creates a GroupUser asynclist on a UsuariGrup collection.
-
toGroupUserArray
public static GroupUser[] toGroupUserArray(UsuariGrup[] source)
Creates a GroupUser array on a UsuariGrup array.
-
toGroupUser
public static void toGroupUser(UsuariGrup source, GroupUser target)
Updates a GroupUser value object based on a UsuariGrup object.
-
-