únicos para (Pacientes, medicos de familia, medicos especialista y administradores). Nuevos métodos en EJB común para consultar Entidades por Id y por código (Para el login).
121 lines
2.5 KiB
Java
121 lines
2.5 KiB
Java
package jpa;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.Table;
|
|
|
|
/**
|
|
*
|
|
* @author Marcos García Núñez (mgarcianun@uoc.edu)
|
|
*
|
|
*/
|
|
@Entity
|
|
@Table(name = "MyHealth.SpecialistDoctor")
|
|
public class SpecialistDoctorJPA implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Id
|
|
@Column(updatable = false)
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private Integer id;
|
|
@Column(nullable = false, unique = true)
|
|
private String professionalNumber;
|
|
private String nif;
|
|
private String name;
|
|
private String surname;
|
|
private String password;
|
|
private String email;
|
|
@ManyToOne
|
|
@JoinColumn(name = "MedicalSpecialtyId")
|
|
private MedicalSpecialtyJPA medicalSpecialty;
|
|
|
|
/**
|
|
* Class constructor methods
|
|
*/
|
|
public SpecialistDoctorJPA() {
|
|
super();
|
|
}
|
|
|
|
public SpecialistDoctorJPA(String pic, String nif, String name, String surname, String password, String email, MedicalSpecialtyJPA ms) {
|
|
this.setProfessionalNumber(pic);
|
|
this.nif = nif;
|
|
this.name = name;
|
|
this.surname = surname;
|
|
this.password = password;
|
|
this.email = email;
|
|
this.medicalSpecialty = ms;
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer value) {
|
|
this.id = value;
|
|
}
|
|
|
|
public String getNif() {
|
|
return nif;
|
|
}
|
|
|
|
public void setNif(String value) {
|
|
this.nif = value;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String value) {
|
|
this.name = value;
|
|
}
|
|
|
|
public String getSurname() {
|
|
return surname;
|
|
}
|
|
|
|
public void setSurname(String surname) {
|
|
this.surname = surname;
|
|
}
|
|
|
|
public String getPassword() {
|
|
return password;
|
|
}
|
|
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
|
|
public String getEmail() {
|
|
return email;
|
|
}
|
|
|
|
public void setEmail(String email) {
|
|
this.email = email;
|
|
}
|
|
|
|
public MedicalSpecialtyJPA getMedicalSpecialty() {
|
|
return medicalSpecialty;
|
|
}
|
|
|
|
public void setMedicalSpecialty(MedicalSpecialtyJPA specialty) {
|
|
this.medicalSpecialty = specialty;
|
|
}
|
|
|
|
public String getProfessionalNumber() {
|
|
return professionalNumber;
|
|
}
|
|
|
|
public void setProfessionalNumber(String professionalNumber) {
|
|
this.professionalNumber = professionalNumber;
|
|
}
|
|
}
|