Package com.soffid.iam.api
Class ApplicationAccessTree
- java.lang.Object
-
- com.soffid.iam.api.ApplicationAccessTree
-
- All Implemented Interfaces:
Serializable
public class ApplicationAccessTree extends Object implements Serializable
ValueObject ApplicationAccessTree- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplicationAccessTree()
ApplicationAccessTree(ApplicationAccessTree otherBean)
ApplicationAccessTree(Long id, String ordre, Long parentId, String parentName, Long childId, String childName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getChildId()
Gets value for attribute childIdString
getChildName()
Gets value for attribute childNameLong
getId()
Gets value for attribute idString
getOrdre()
Gets value for attribute ordreLong
getParentId()
Gets value for attribute parentIdString
getParentName()
Gets value for attribute parentNamevoid
setChildId(Long childId)
Sets value for attribute childIdvoid
setChildName(String childName)
Sets value for attribute childNamevoid
setId(Long id)
Sets value for attribute idvoid
setOrdre(String ordre)
Sets value for attribute ordrevoid
setParentId(Long parentId)
Sets value for attribute parentIdvoid
setParentName(String parentName)
Sets value for attribute parentNamestatic ApplicationAccessTree
toApplicationAccessTree(ArbrePuntEntrada vo)
Creates a ApplicationAccessTree value object based on a ArbrePuntEntrada object.static void
toApplicationAccessTree(ArbrePuntEntrada source, ApplicationAccessTree target)
Updates a ApplicationAccessTree value object based on a ArbrePuntEntrada object.static ApplicationAccessTree[]
toApplicationAccessTreeArray(ArbrePuntEntrada[] source)
Creates a ApplicationAccessTree array on a ArbrePuntEntrada array.static AsyncList<ApplicationAccessTree>
toApplicationAccessTreeAsyncList(AsyncList<ArbrePuntEntrada> source)
Creates a ApplicationAccessTree asynclist on a ArbrePuntEntrada collection.static PagedResult<ApplicationAccessTree>
toApplicationAccessTreeList(PagedResult<ArbrePuntEntrada> source)
Creates a ApplicationAccessTree pagedResult on a ArbrePuntEntrada collection.static List<ApplicationAccessTree>
toApplicationAccessTreeList(Collection<ArbrePuntEntrada> source)
Creates a ApplicationAccessTree list on a ArbrePuntEntrada collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getOrdre
public String getOrdre()
Gets value for attribute ordre
-
setOrdre
public void setOrdre(String ordre)
Sets value for attribute ordre
-
getParentId
public Long getParentId()
Gets value for attribute parentId
-
setParentId
public void setParentId(Long parentId)
Sets value for attribute parentId
-
getParentName
public String getParentName()
Gets value for attribute parentName
-
setParentName
public void setParentName(String parentName)
Sets value for attribute parentName
-
getChildId
public Long getChildId()
Gets value for attribute childId
-
setChildId
public void setChildId(Long childId)
Sets value for attribute childId
-
getChildName
public String getChildName()
Gets value for attribute childName
-
setChildName
public void setChildName(String childName)
Sets value for attribute childName
-
toString
public String toString()
Returns a string representation of the value object.
-
toApplicationAccessTree
public static ApplicationAccessTree toApplicationAccessTree(ArbrePuntEntrada vo)
Creates a ApplicationAccessTree value object based on a ArbrePuntEntrada object.
-
toApplicationAccessTreeList
public static List<ApplicationAccessTree> toApplicationAccessTreeList(Collection<ArbrePuntEntrada> source)
Creates a ApplicationAccessTree list on a ArbrePuntEntrada collection.
-
toApplicationAccessTreeList
public static PagedResult<ApplicationAccessTree> toApplicationAccessTreeList(PagedResult<ArbrePuntEntrada> source)
Creates a ApplicationAccessTree pagedResult on a ArbrePuntEntrada collection.
-
toApplicationAccessTreeAsyncList
public static AsyncList<ApplicationAccessTree> toApplicationAccessTreeAsyncList(AsyncList<ArbrePuntEntrada> source)
Creates a ApplicationAccessTree asynclist on a ArbrePuntEntrada collection.
-
toApplicationAccessTreeArray
public static ApplicationAccessTree[] toApplicationAccessTreeArray(ArbrePuntEntrada[] source)
Creates a ApplicationAccessTree array on a ArbrePuntEntrada array.
-
toApplicationAccessTree
public static void toApplicationAccessTree(ArbrePuntEntrada source, ApplicationAccessTree target)
Updates a ApplicationAccessTree value object based on a ArbrePuntEntrada object.
-
-