* Tema por defecto nova-light
* Interfaz de usuario con Grid-css para pantalla de registro.
This commit is contained in:
@@ -9,7 +9,6 @@ import java.util.Properties;
|
||||
import javax.annotation.PostConstruct;
|
||||
import javax.enterprise.context.RequestScoped;
|
||||
import javax.faces.application.FacesMessage;
|
||||
import javax.faces.context.FacesContext;
|
||||
import javax.inject.Named;
|
||||
import javax.naming.Context;
|
||||
import javax.naming.InitialContext;
|
||||
@@ -68,7 +67,7 @@ public class RegisterUserMBean extends ProfileMBeanBase implements Serializable
|
||||
this.userTypes.put(UserType.PATIENT.getUserTypename(), UserType.PATIENT.name());
|
||||
this.userTypes.put(UserType.FAMILY_DOCTOR.getUserTypename(), UserType.FAMILY_DOCTOR.name());
|
||||
this.userTypes.put(UserType.SPECIALIST_DOCTOR.getUserTypename(), UserType.SPECIALIST_DOCTOR.name());
|
||||
this.userType = "patient";
|
||||
this.userType = UserType.PATIENT.getUserTypename();
|
||||
|
||||
}
|
||||
|
||||
@@ -209,12 +208,20 @@ public class RegisterUserMBean extends ProfileMBeanBase implements Serializable
|
||||
this.userType = userType;
|
||||
}
|
||||
|
||||
public String getmedicalSpecialty() {
|
||||
public String getMedicalSpecialty() {
|
||||
return medicalSpecialty;
|
||||
}
|
||||
|
||||
public void setmedicalSpecialty(String medicalSpecialty) {
|
||||
public void setMedicalSpecialty(String medicalSpecialty) {
|
||||
this.medicalSpecialty = medicalSpecialty;
|
||||
}
|
||||
|
||||
public String getPrimaryHealthCareCenter() {
|
||||
return primaryHealthCareCenter;
|
||||
}
|
||||
|
||||
public void setPrimaryHealthCareCenter(String primaryHealthCareCenter) {
|
||||
this.primaryHealthCareCenter = primaryHealthCareCenter;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user