blob: d8d1f7f44f722848a64110fa5ae7f9c4c2b69fe5 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.jaxb.xmlidref;
import java.util.Arrays;
import java.util.Collection;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlIDREF;
import jakarta.xml.bind.annotation.XmlRootElement;
import org.eclipse.persistence.oxm.annotations.XmlInverseReference;
@XmlRootElement(name="employee")
public class Employee {
@XmlID
@XmlAttribute(name="id")
public String id;
@XmlElement(name="name")
public String name;
@XmlIDREF
@XmlAttribute(name="address-id")
public Address address;
@XmlIDREF
@XmlElement(name="phone-id")
public Collection<PhoneNumber> phones;
@Override
public boolean equals(Object obj) {
if (obj == null || !(obj instanceof Employee)) {
return false;
}
Employee emp = (Employee) obj;
if (this.address == null && emp.address != null) {
return false;
}
if (emp.address == null) {
return false;
}
if (!address.equals(emp.address)) {
return false;
}
PhoneNumber[] phoneNumbers1 = new PhoneNumber[phones.size()];
phones.toArray(phoneNumbers1);
PhoneNumber[] phoneNumbers2 = new PhoneNumber[emp.phones.size()];
emp.phones.toArray(phoneNumbers2);
return Arrays.equals(phoneNumbers1, phoneNumbers2);
}
@Override
public int hashCode() {
int result = address != null ? address.hashCode() : 0;
if (phones != null) {
result = 31 * result + Arrays.hashCode(phones.toArray());
}
return result;
}
public boolean equalsWithoutCyclicDependency(Object obj) {
if (obj == null || !(obj instanceof Employee)) {
return false;
}
Employee emp = (Employee) obj;
if (this.address == null && emp.address != null) {
return false;
}
if (emp.address == null) {
return false;
}
if (!address.equals(emp.address)) {
return false;
}
return phones.size() == emp.phones.size();
}
public int hashCodeWithoutCyclicDependency() {
int result = address != null ? address.hashCode() : 0;
if (phones != null) {
result = 31 * result + phones.size();
}
return result;
}
}