blob: 4377bbc3049c9760cd4cd9b45d9c7fed9ae36b24 [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:
// Denise Smith - 2.3
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmladapter.packagelevel.unspecified;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.*;
import org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmladapter.classlevel.MyCalendar;
@XmlRootElement(name="employee")
@XmlAccessorType(XmlAccessType.FIELD)
public class Employee {
public static final int uid = 1234567;
public BigDecimal id;
public String firstName;
@XmlElement(name = "lastname")
public String lastName;
public MyCalendar birthday;
@XmlTransient
public int age;
public Address address;
public String toString() {
return "EMPLOYEE: " + id + " " + firstName + " " + lastName + " "
+ birthday;
}
public boolean equals(Object object) {
Employee emp = ((Employee)object);
if(!id.equals(emp.id)){
return false;
}
if((!(emp.firstName.equals(this.firstName))) || (!(emp.lastName.equals(this.lastName))) ||(emp.age != this.age)){
return false;
}
if(!(emp.birthday.equals(this.birthday))){
return false;
}
if((this.address == null) && (emp.address != null)){
return false;
}
if((emp.address == null) && (this.address != null)){
return false;
}
if(!address.equals(emp.address)){
return false;
}
return true;
}
}