nosi.webapps.igrp.pages.ldapuser.LdapUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of igrp-core Show documentation
Show all versions of igrp-core Show documentation
IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.
package nosi.webapps.igrp.pages.ldapuser;
import nosi.core.webapp.Model;
import nosi.core.webapp.RParam;
public class LdapUser extends Model{
@RParam(rParamName = "p_common_name")
private String common_name;
@RParam(rParamName = "p_surname")
private String surname;
@RParam(rParamName = "p_email_1")
private String email_1;
public void setCommon_name(String common_name){
this.common_name = common_name;
}
public String getCommon_name(){
return this.common_name;
}
public void setSurname(String surname){
this.surname = surname;
}
public String getSurname(){
return this.surname;
}
public void setEmail_1(String email_1){
this.email_1 = email_1;
}
public String getEmail_1(){
return this.email_1;
}
}