blob: 747d129258afa6e72852f4e2d20432c422817029 [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:
// mmacivor - January 09, 2009 - 1.1 - Initial implementation
package org.eclipse.persistence.testing.jaxb.annotations.xmlcontainerproperty;
import java.util.Vector;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementWrapper;
import jakarta.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name="employee")
public class Employee {
@XmlAttribute
public int id;
@XmlElement(name="first-name")
public String firstName;
@XmlElement(name="last-name")
public String lastName;
@XmlElement(name="address")
public Address address;
@XmlElementWrapper(name="phone-numbers")
@XmlElement(name="number")
public Vector<PhoneNumber> phoneNumbers;
@Override
public boolean equals(Object e) {
if(!(e instanceof Employee)) {
return false;
}
Employee obj = (Employee)e;
boolean equal = this.id == obj.id;
equal = equal && this.firstName.equals(obj.firstName);
equal = equal && this.lastName.equals(obj.lastName);
equal = equal && this.address.equals(obj.address);
if(this.phoneNumbers.size() != obj.phoneNumbers.size()) {
return false;
}
for(int i = 0; i < phoneNumbers.size(); i++) {
PhoneNumber num1 = phoneNumbers.get(i);
PhoneNumber num2 = obj.phoneNumbers.get(i);
equal = equal && num1.equals(num2);
}
return equal;
}
}