de.svws_nrw.db.dto.current.schild.lehrer.DTOLehrerLehramtPK Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svws-db-dto Show documentation
Show all versions of svws-db-dto Show documentation
Diese Bibliothek stellt die DTOs für den Zugriff auf Datenbanken für die Schulverwaltungssoftware in NRW zur Verfügung
The newest version!
package de.svws_nrw.db.dto.current.schild.lehrer;
import java.io.Serializable;
/**
* Diese Klasse dient als DTO für den Primärschlüssel der Datenbanktabelle LehrerLehramt.
* Sie wurde automatisch per Skript generiert und sollte nicht verändert werden,
* da sie aufgrund von Änderungen am DB-Schema ggf. neu generiert und überschrieben wird.
*/
public final class DTOLehrerLehramtPK implements Serializable {
/** Die UID für diese Klasse */
private static final long serialVersionUID = 1L;
/** LehrerID zu der das Lehramt gehört */
public long Lehrer_ID;
/** Lehramtskürzel */
public String LehramtKrz;
/**
* Erstellt ein neues Objekt der Klasse DTOLehrerLehramtPK ohne eine Initialisierung der Attribute.
*/
@SuppressWarnings("unused")
private DTOLehrerLehramtPK() {
}
/**
* Erstellt ein neues Objekt der Klasse DTOLehrerLehramtPK.
* @param Lehrer_ID der Wert für das Attribut Lehrer_ID
* @param LehramtKrz der Wert für das Attribut LehramtKrz
*/
public DTOLehrerLehramtPK(final long Lehrer_ID, final String LehramtKrz) {
this.Lehrer_ID = Lehrer_ID;
if (LehramtKrz == null) {
throw new NullPointerException("LehramtKrz must not be null");
}
this.LehramtKrz = LehramtKrz;
}
@Override
public boolean equals(final Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
DTOLehrerLehramtPK other = (DTOLehrerLehramtPK) obj;
if (Lehrer_ID != other.Lehrer_ID)
return false;
if (LehramtKrz == null) {
if (other.LehramtKrz != null)
return false;
} else if (!LehramtKrz.equals(other.LehramtKrz))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + Long.hashCode(Lehrer_ID);
result = prime * result + ((LehramtKrz == null) ? 0 : LehramtKrz.hashCode());
return result;
}
}