Package com.soffid.iam.api
Class SystemGroup
- java.lang.Object
-
- com.soffid.iam.api.SystemGroup
-
- All Implemented Interfaces:
Serializable
public class SystemGroup extends Object implements Serializable
ValueObject SystemGroup- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SystemGroup()
SystemGroup(SystemGroup otherBean)
SystemGroup(Long id, String systemCode, String groupCode)
SystemGroup(String systemCode, String groupCode)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getGroupCode()
Gets value for attribute groupCodeLong
getId()
Gets value for attribute idString
getSystemCode()
Gets value for attribute systemCodevoid
setGroupCode(String groupCode)
Sets value for attribute groupCodevoid
setId(Long id)
Sets value for attribute idvoid
setSystemCode(String systemCode)
Sets value for attribute systemCodeString
toString()
Returns a string representation of the value object.static SystemGroup
toSystemGroup(GrupDispatcher vo)
Creates a SystemGroup value object based on a GrupDispatcher object.static void
toSystemGroup(GrupDispatcher source, SystemGroup target)
Updates a SystemGroup value object based on a GrupDispatcher object.static SystemGroup[]
toSystemGroupArray(GrupDispatcher[] source)
Creates a SystemGroup array on a GrupDispatcher array.static AsyncList<SystemGroup>
toSystemGroupAsyncList(AsyncList<GrupDispatcher> source)
Creates a SystemGroup asynclist on a GrupDispatcher collection.static PagedResult<SystemGroup>
toSystemGroupList(PagedResult<GrupDispatcher> source)
Creates a SystemGroup pagedResult on a GrupDispatcher collection.static List<SystemGroup>
toSystemGroupList(Collection<GrupDispatcher> source)
Creates a SystemGroup list on a GrupDispatcher collection.
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getSystemCode
public String getSystemCode()
Gets value for attribute systemCode
-
setSystemCode
public void setSystemCode(String systemCode)
Sets value for attribute systemCode
-
getGroupCode
public String getGroupCode()
Gets value for attribute groupCode
-
setGroupCode
public void setGroupCode(String groupCode)
Sets value for attribute groupCode
-
toString
public String toString()
Returns a string representation of the value object.
-
toSystemGroup
public static SystemGroup toSystemGroup(GrupDispatcher vo)
Creates a SystemGroup value object based on a GrupDispatcher object.
-
toSystemGroupList
public static List<SystemGroup> toSystemGroupList(Collection<GrupDispatcher> source)
Creates a SystemGroup list on a GrupDispatcher collection.
-
toSystemGroupList
public static PagedResult<SystemGroup> toSystemGroupList(PagedResult<GrupDispatcher> source)
Creates a SystemGroup pagedResult on a GrupDispatcher collection.
-
toSystemGroupAsyncList
public static AsyncList<SystemGroup> toSystemGroupAsyncList(AsyncList<GrupDispatcher> source)
Creates a SystemGroup asynclist on a GrupDispatcher collection.
-
toSystemGroupArray
public static SystemGroup[] toSystemGroupArray(GrupDispatcher[] source)
Creates a SystemGroup array on a GrupDispatcher array.
-
toSystemGroup
public static void toSystemGroup(GrupDispatcher source, SystemGroup target)
Updates a SystemGroup value object based on a GrupDispatcher object.
-
-