Package com.soffid.iam.api
Class ParentData
- java.lang.Object
-
- com.soffid.iam.api.ParentData
-
- All Implemented Interfaces:
Serializable
public class ParentData extends Object implements Serializable
ValueObject ParentData- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParentData()ParentData(ParentData otherBean)ParentData(String name, String lastName1)ParentData(String name, String lastName1, String lastName2, String email)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEmail()Gets value for attribute emailStringgetLastName1()Gets value for attribute lastName1StringgetLastName2()Gets value for attribute lastName2StringgetName()Gets value for attribute namevoidsetEmail(String email)Sets value for attribute emailvoidsetLastName1(String lastName1)Sets value for attribute lastName1voidsetLastName2(String lastName2)Sets value for attribute lastName2voidsetName(String name)Sets value for attribute namestatic ParentDatatoParentData(DadesPare vo)Creates a ParentData value object based on a DadesPare object.static voidtoParentData(DadesPare source, ParentData target)Updates a ParentData value object based on a DadesPare object.static ParentData[]toParentDataArray(DadesPare[] source)Creates a ParentData array on a DadesPare array.static AsyncList<ParentData>toParentDataAsyncList(AsyncList<DadesPare> source)Creates a ParentData asynclist on a DadesPare collection.static PagedResult<ParentData>toParentDataList(PagedResult<DadesPare> source)Creates a ParentData pagedResult on a DadesPare collection.static List<ParentData>toParentDataList(Collection<DadesPare> source)Creates a ParentData list on a DadesPare collection.StringtoString()Returns a string representation of the value object.
-
-
-
Method Detail
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getLastName1
public String getLastName1()
Gets value for attribute lastName1
-
setLastName1
public void setLastName1(String lastName1)
Sets value for attribute lastName1
-
getLastName2
public String getLastName2()
Gets value for attribute lastName2
-
setLastName2
public void setLastName2(String lastName2)
Sets value for attribute lastName2
-
getEmail
public String getEmail()
Gets value for attribute email
-
setEmail
public void setEmail(String email)
Sets value for attribute email
-
toString
public String toString()
Returns a string representation of the value object.
-
toParentData
public static ParentData toParentData(DadesPare vo)
Creates a ParentData value object based on a DadesPare object.
-
toParentDataList
public static List<ParentData> toParentDataList(Collection<DadesPare> source)
Creates a ParentData list on a DadesPare collection.
-
toParentDataList
public static PagedResult<ParentData> toParentDataList(PagedResult<DadesPare> source)
Creates a ParentData pagedResult on a DadesPare collection.
-
toParentDataAsyncList
public static AsyncList<ParentData> toParentDataAsyncList(AsyncList<DadesPare> source)
Creates a ParentData asynclist on a DadesPare collection.
-
toParentDataArray
public static ParentData[] toParentDataArray(DadesPare[] source)
Creates a ParentData array on a DadesPare array.
-
toParentData
public static void toParentData(DadesPare source, ParentData target)
Updates a ParentData value object based on a DadesPare object.
-
-