org.epos.handler.dbapi.model.EDMContactpointTelephone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of db-api Show documentation
Show all versions of db-api Show documentation
EPOS Database APIs useful to interact with EPOS Metadata Catalogue
The newest version!
package org.epos.handler.dbapi.model;
import javax.persistence.*;
@Entity
@Table(name = "contactpoint_telephone")
public class EDMContactpointTelephone {
private String id;
private String telnumber;
private String instanceContactpointId;
private EDMContactpoint contactpointByInstanceContactpointId;
@Id
@Column(name = "id")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Basic
@Column(name = "telnumber")
public String getTelnumber() {
return telnumber;
}
public void setTelnumber(String telnumber) {
this.telnumber = telnumber;
}
@Basic
@Column(name = "instance_contactpoint_id", insertable = false, updatable = false)
public String getInstanceContactpointId() {
return instanceContactpointId;
}
public void setInstanceContactpointId(String instanceContactpointId) {
this.instanceContactpointId = instanceContactpointId;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
EDMContactpointTelephone that = (EDMContactpointTelephone) o;
if (id != null ? !id.equals(that.id) : that.id != null) return false;
if (telnumber != null ? !telnumber.equals(that.telnumber) : that.telnumber != null) return false;
return instanceContactpointId != null ? instanceContactpointId.equals(that.instanceContactpointId) : that.instanceContactpointId == null;
}
@Override
public int hashCode() {
int result = id != null ? id.hashCode() : 0;
result = 31 * result + (telnumber != null ? telnumber.hashCode() : 0);
result = 31 * result + (instanceContactpointId != null ? instanceContactpointId.hashCode() : 0);
return result;
}
@ManyToOne
@JoinColumn(name = "instance_contactpoint_id", referencedColumnName = "instance_id", nullable = false)
public EDMContactpoint getContactpointByInstanceContactpointId() {
return contactpointByInstanceContactpointId;
}
public void setContactpointByInstanceContactpointId(EDMContactpoint contactpointByInstanceContactpointId) {
this.contactpointByInstanceContactpointId = contactpointByInstanceContactpointId;
}
}