blob: 696e9a4f4311fc2fb0431fa3e4ac2e21435ea024 [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 - 2.2 - Initial implementation
package org.eclipse.persistence.testing.jaxb.annotations.xmlelementsjoinnodes;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlRootElement;
import org.eclipse.persistence.oxm.annotations.XmlJoinNode;
import org.eclipse.persistence.oxm.annotations.XmlJoinNodes;
import org.eclipse.persistence.oxm.annotations.XmlElementsJoinNodes;
@XmlRootElement
public class Client {
@XmlAttribute
@XmlID
public String id;
@XmlElements({
@XmlElement(name="mail", type=Address.class),
@XmlElement(name="phone", type=PhoneNumber.class)
})
@XmlElementsJoinNodes({
@XmlJoinNodes({
@XmlJoinNode(xmlPath="mail/@id", referencedXmlPath="@aid"),
@XmlJoinNode(xmlPath="mail/type/text()", referencedXmlPath="@type")
}),
@XmlJoinNodes({
@XmlJoinNode(xmlPath="phone/@id", referencedXmlPath="@pid"),
@XmlJoinNode(xmlPath="phone/type/text()", referencedXmlPath="@type")
})
})
public Object preferredContactMethod;
public Client() {}
public Client(String id, Object preferredContactMethod) {
this.id = id;
this.preferredContactMethod = preferredContactMethod;
}
public boolean equals(Object o) {
Client c;
try {
c = (Client) o;
} catch (ClassCastException cce) {
return false;
}
try {
return this.id.equals(c.id) && this.preferredContactMethod.equals(c.preferredContactMethod);
} catch (Exception x) {
return false;
}
}
}