de.svws_nrw.db.dto.current.client.DTOClientKonfigurationGlobalPK 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
package de.svws_nrw.db.dto.current.client;
import java.io.Serializable;
/**
* Diese Klasse dient als DTO für den Primärschlüssel der Datenbanktabelle Client_Konfiguration_Global.
* 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 DTOClientKonfigurationGlobalPK implements Serializable {
/** Die UID für diese Klasse */
private static final long serialVersionUID = 1L;
/** Der Name der Client-Anwendung, für die der Konfigurationsdatensatz gespeichert ist */
public String AppName;
/** Der Schlüsselname des Konfigurationsdatensatzes */
public String Schluessel;
/**
* Erstellt ein neues Objekt der Klasse DTOClientKonfigurationGlobalPK ohne eine Initialisierung der Attribute.
*/
@SuppressWarnings("unused")
private DTOClientKonfigurationGlobalPK() {
}
/**
* Erstellt ein neues Objekt der Klasse DTOClientKonfigurationGlobalPK.
* @param AppName der Wert für das Attribut AppName
* @param Schluessel der Wert für das Attribut Schluessel
*/
public DTOClientKonfigurationGlobalPK(final String AppName, final String Schluessel) {
if (AppName == null) {
throw new NullPointerException("AppName must not be null");
}
this.AppName = AppName;
if (Schluessel == null) {
throw new NullPointerException("Schluessel must not be null");
}
this.Schluessel = Schluessel;
}
@Override
public boolean equals(final Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
DTOClientKonfigurationGlobalPK other = (DTOClientKonfigurationGlobalPK) obj;
if (AppName == null) {
if (other.AppName != null)
return false;
} else if (!AppName.equals(other.AppName))
return false;
if (Schluessel == null) {
if (other.Schluessel != null)
return false;
} else if (!Schluessel.equals(other.Schluessel))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((AppName == null) ? 0 : AppName.hashCode());
result = prime * result + ((Schluessel == null) ? 0 : Schluessel.hashCode());
return result;
}
}