/******************************************************************************* * Copyright (c) 2011, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Blaise Doughan - 2.3 - initial implementation * Praba Vijayaratnam - 2.3 - test automation ******************************************************************************/ package org.eclipse.persistence.testing.jaxrs.model; import org.eclipse.persistence.oxm.annotations.XmlInverseReference; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import javax.xml.bind.annotation.XmlRootElement; import java.io.Serializable; @XmlRootElement @Entity @Table(name = "PHONENUMBER") public class PhoneNumber implements Serializable { private static final long serialVersionUID = 1L; @Id private long id; private String num; private String type; @ManyToOne @JoinColumn(name = "ID_CUSTOMER") private Customer customer; public PhoneNumber() { } public long getId() { return this.id; } public void setId(long id) { this.id = id; } public String getNum() { return this.num; } public void setNum(String num) { this.num = num; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } @XmlInverseReference(mappedBy = "phoneNumbers") public Customer getCustomer() { return this.customer; } public void setCustomer(Customer customer) { this.customer = customer; } public boolean equals(Object object) { if (null == object || object.getClass() != this.getClass()) { return false; } PhoneNumber test = ((PhoneNumber) object); if (!equals(id, test.getId())) { return false; } if (!equals(num, test.getNum())) { return false; } if (!equals(type, test.getType())) { return false; } if (null == test.getCustomer() && null != customer) { return false; } if (null != test.getCustomer() && null == customer) { return false; } return true; } private boolean equals(Object control, Object test) { if (null == control) { return null == test; } return control.equals(test); } }