blob: a9703ae85ae0b7be276f56f16b4260a81a8ca998 [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.oxm.mappings.compositeobject.nillable;
public class Employee2 {
public static final int DEFAULT_ID = 123;
// Factory method
public static Employee2 getInstance() {
return new Employee2(DEFAULT_ID,"Jane", "Doe");
}
//private int id;
//private Vector tasks; // of type <String>
private String firstName;
//private String lastName;
private boolean isSetFirstName = false;
public Employee2() {
super();
//tasks = new Vector();
}
public Employee2(int id) {
super();
//tasks = new Vector();
//isSetTasks = true;
//this.id = id;
}
public Employee2(int id, String aFirstName, String aLastName) {
super();
//this.id = id;
//setTasks(aVector);
setFirstName(aFirstName);
//setLastName(aLastName);
}
// override default equals
public boolean equals(Object object) {
if (!(object instanceof Employee2)) {
return false;
}
Employee2 employeeObject = (Employee2)object;
// if (getId() != employeeObject.getId()) {
// return false;
// }
// if ((employeeObject.getLastName() == null) && (getLastName() != null)) {
// return false;
// }
if ((employeeObject.getFirstName() == null) && (getFirstName() != null)) {
return false;
}
// if ((employeeObject.getLastName() != null) && (getLastName() == null)) {
// return false;
// }
if ((employeeObject.getFirstName() != null) && (getFirstName() == null)) {
return false;
}
if ((getFirstName() != null) && (employeeObject.getFirstName() != null) &&//
!getFirstName().equals(employeeObject.getFirstName())) {
return false;
}
// if ((getLastName() != null) && (employeeObject.getLastName() != null) &&//
// !getLastName().equals(employeeObject.getLastName())) {
// return false;
// }
return true;
}
public String getFirstName() {
return firstName;
}
// public int getId() {
// return id;
// }
// public String getLastName() {
// return lastName;
// }
//public Vector getTasks() {
// return tasks;
//}
public boolean isSetFirstName() {
return isSetFirstName;
}
public void setFirstName(String firstName) {
// no unset for now
isSetFirstName = true;
this.firstName = firstName;
}
// public void setId(int id) {
// this.id = id;
// }
// public void setLastName(String lastName) {
// this.lastName = lastName;
// }
//public void setTasks(Vector tasks) {
// this.tasks = tasks;
// isSetFirstName = true;
//}
public String toString() {
return "Employee2(" +//firstName + "," +
//tasks + "," +
firstName + ")";
}
}