Package com.soffid.iam.api
Class Student
- java.lang.Object
-
- com.soffid.iam.api.Student
-
- All Implemented Interfaces:
Serializable
public class Student extends Object implements Serializable
ValueObject Student- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Student()
Student(Student otherBean)
Student(String codiXestib, String nom, String llinatge1, String school, String grupAlumne)
Student(String userCode, String contrasenya, String codiXestib, String nom, String llinatge1, String llinatge2, String school, String grupAlumne, String correuElectronic)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCodiXestib()
Gets value for attribute codiXestibString
getContrasenya()
Gets value for attribute contrasenyaString
getCorreuElectronic()
Gets value for attribute correuElectronicString
getGrupAlumne()
Gets value for attribute grupAlumneString
getLlinatge1()
Gets value for attribute llinatge1String
getLlinatge2()
Gets value for attribute llinatge2String
getNom()
Gets value for attribute nomString
getSchool()
Gets value for attribute schoolString
getUserCode()
Gets value for attribute userCodevoid
setCodiXestib(String codiXestib)
Sets value for attribute codiXestibvoid
setContrasenya(String contrasenya)
Sets value for attribute contrasenyavoid
setCorreuElectronic(String correuElectronic)
Sets value for attribute correuElectronicvoid
setGrupAlumne(String grupAlumne)
Sets value for attribute grupAlumnevoid
setLlinatge1(String llinatge1)
Sets value for attribute llinatge1void
setLlinatge2(String llinatge2)
Sets value for attribute llinatge2void
setNom(String nom)
Sets value for attribute nomvoid
setSchool(String school)
Sets value for attribute schoolvoid
setUserCode(String userCode)
Sets value for attribute userCodeString
toString()
Returns a string representation of the value object.static Student
toStudent(UsuariAlumne vo)
Creates a Student value object based on a UsuariAlumne object.static void
toStudent(UsuariAlumne source, Student target)
Updates a Student value object based on a UsuariAlumne object.static Student[]
toStudentArray(UsuariAlumne[] source)
Creates a Student array on a UsuariAlumne array.static AsyncList<Student>
toStudentAsyncList(AsyncList<UsuariAlumne> source)
Creates a Student asynclist on a UsuariAlumne collection.static PagedResult<Student>
toStudentList(PagedResult<UsuariAlumne> source)
Creates a Student pagedResult on a UsuariAlumne collection.static List<Student>
toStudentList(Collection<UsuariAlumne> source)
Creates a Student list on a UsuariAlumne collection.
-
-
-
Constructor Detail
-
Student
public Student()
-
Student
public Student(String userCode, String contrasenya, String codiXestib, String nom, String llinatge1, String llinatge2, String school, String grupAlumne, String correuElectronic)
-
Student
public Student(String codiXestib, String nom, String llinatge1, String school, String grupAlumne)
-
Student
public Student(Student otherBean)
-
-
Method Detail
-
getUserCode
public String getUserCode()
Gets value for attribute userCode
-
setUserCode
public void setUserCode(String userCode)
Sets value for attribute userCode
-
getContrasenya
public String getContrasenya()
Gets value for attribute contrasenya
-
setContrasenya
public void setContrasenya(String contrasenya)
Sets value for attribute contrasenya
-
getCodiXestib
public String getCodiXestib()
Gets value for attribute codiXestib
-
setCodiXestib
public void setCodiXestib(String codiXestib)
Sets value for attribute codiXestib
-
getNom
public String getNom()
Gets value for attribute nom
-
setNom
public void setNom(String nom)
Sets value for attribute nom
-
getLlinatge1
public String getLlinatge1()
Gets value for attribute llinatge1
-
setLlinatge1
public void setLlinatge1(String llinatge1)
Sets value for attribute llinatge1
-
getLlinatge2
public String getLlinatge2()
Gets value for attribute llinatge2
-
setLlinatge2
public void setLlinatge2(String llinatge2)
Sets value for attribute llinatge2
-
getSchool
public String getSchool()
Gets value for attribute school
-
setSchool
public void setSchool(String school)
Sets value for attribute school
-
getGrupAlumne
public String getGrupAlumne()
Gets value for attribute grupAlumne
-
setGrupAlumne
public void setGrupAlumne(String grupAlumne)
Sets value for attribute grupAlumne
-
getCorreuElectronic
public String getCorreuElectronic()
Gets value for attribute correuElectronic
-
setCorreuElectronic
public void setCorreuElectronic(String correuElectronic)
Sets value for attribute correuElectronic
-
toString
public String toString()
Returns a string representation of the value object.
-
toStudent
public static Student toStudent(UsuariAlumne vo)
Creates a Student value object based on a UsuariAlumne object.
-
toStudentList
public static List<Student> toStudentList(Collection<UsuariAlumne> source)
Creates a Student list on a UsuariAlumne collection.
-
toStudentList
public static PagedResult<Student> toStudentList(PagedResult<UsuariAlumne> source)
Creates a Student pagedResult on a UsuariAlumne collection.
-
toStudentAsyncList
public static AsyncList<Student> toStudentAsyncList(AsyncList<UsuariAlumne> source)
Creates a Student asynclist on a UsuariAlumne collection.
-
toStudentArray
public static Student[] toStudentArray(UsuariAlumne[] source)
Creates a Student array on a UsuariAlumne array.
-
toStudent
public static void toStudent(UsuariAlumne source, Student target)
Updates a Student value object based on a UsuariAlumne object.
-
-