blob: bedff27d86b2369d8d6b00fbe8b4fc8d78d49347 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// dmccann - August 26/2010 - 2.2 - Initial implementation
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmljoinnode;
import org.eclipse.persistence.oxm.annotations.XmlJoinNode;
import org.eclipse.persistence.oxm.annotations.XmlJoinNodes;
public class Employee {
public String id;
// the following is invalid and should be overridden by XML metadata
@XmlJoinNodes({
@XmlJoinNode(xmlPath="waddress/@id", referencedXmlPath="@id"),
@XmlJoinNode(xmlPath="waddress/city/text()", referencedXmlPath="city/text()")
})
public Address workAddress;
public Employee() {}
public Employee(String id, Address workAddress) {
this.id = id;
this.workAddress = workAddress;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Employee employee = (Employee) o;
if (id != null ? !id.equals(employee.id) : employee.id != null) return false;
if (workAddress != null ? !workAddress.equals(employee.workAddress) : employee.workAddress != null)
return false;
return true;
}
@Override
public int hashCode() {
int result = id != null ? id.hashCode() : 0;
result = 31 * result + (workAddress != null ? workAddress.hashCode() : 0);
return result;
}
}