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 StringgetCodiXestib()Gets value for attribute codiXestibStringgetContrasenya()Gets value for attribute contrasenyaStringgetCorreuElectronic()Gets value for attribute correuElectronicStringgetGrupAlumne()Gets value for attribute grupAlumneStringgetLlinatge1()Gets value for attribute llinatge1StringgetLlinatge2()Gets value for attribute llinatge2StringgetNom()Gets value for attribute nomStringgetSchool()Gets value for attribute schoolStringgetUserCode()Gets value for attribute userCodevoidsetCodiXestib(String codiXestib)Sets value for attribute codiXestibvoidsetContrasenya(String contrasenya)Sets value for attribute contrasenyavoidsetCorreuElectronic(String correuElectronic)Sets value for attribute correuElectronicvoidsetGrupAlumne(String grupAlumne)Sets value for attribute grupAlumnevoidsetLlinatge1(String llinatge1)Sets value for attribute llinatge1voidsetLlinatge2(String llinatge2)Sets value for attribute llinatge2voidsetNom(String nom)Sets value for attribute nomvoidsetSchool(String school)Sets value for attribute schoolvoidsetUserCode(String userCode)Sets value for attribute userCodeStringtoString()Returns a string representation of the value object.static StudenttoStudent(UsuariAlumne vo)Creates a Student value object based on a UsuariAlumne object.static voidtoStudent(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.
-
-