org.javastro.ivoa.entities.regtap.ResTablePK Maven / Gradle / Ivy
/*
* $$Id:$$
*
*
* Created on 04-Feb-2013 by Paul Harrison
*
* This software is published under the terms of the Academic
* Free License, a copy of which has been included
* with this distribution in the LICENSE.txt file.
*
* Copyright (c) The University of Manchester. All rights reserved.
*
*/
package org.javastro.ivoa.entities.regtap;
import java.io.Serializable;
import jakarta.persistence.Basic;
import jakarta.persistence.Column;
import jakarta.persistence.Embeddable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
*
* @author Paul Harrison 04-Feb-2013
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@Embeddable
public class ResTablePK implements Serializable {
/** serialVersionUID.
*/
private static final long serialVersionUID = 2157877338889390524L;
@Basic(optional = false)
@Column(name="ivoid",nullable = false)
@XmlAttribute
private String ivoid;
@Basic(optional = false)
@Column(name = "table_index", nullable = false)
@XmlAttribute(name = "table_index")
private short tableIndex;
public ResTablePK() {
}
public ResTablePK(String ivoid, short tableIndex) {
this.ivoid = ivoid;
this.tableIndex = tableIndex;
}
public String getIvoid() {
return ivoid;
}
public void setIvoid(String ivoid) {
this.ivoid = ivoid;
}
public short getTableIndex() {
return tableIndex;
}
public void setTableIndex(short tableIndex) {
this.tableIndex = tableIndex;
}
@Override
public int hashCode() {
int hash = 0;
hash += (ivoid != null ? ivoid.hashCode() : 0);
hash += (int) tableIndex;
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof ResTablePK)) {
return false;
}
ResTablePK other = (ResTablePK) object;
if ((this.ivoid == null && other.ivoid != null) || (this.ivoid != null && !this.ivoid.equals(other.ivoid))) {
return false;
}
if (this.tableIndex != other.tableIndex) {
return false;
}
return true;
}
@Override
public String toString() {
return "net.ivoa.regtap.ResTablePK[ ivoid=" + ivoid + ", tableIndex=" + tableIndex + " ]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy