blob: 0bc461f61fe3ef3f502c2cbc1dbd8b7e6c3a4b8b [file] [log] [blame]
/*
* Copyright (c) 2018, 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
*/
package org.eclipse.persistence.testing.oxm.mappings.containeraccessor;
public class Address {
public String street;
public String city;
public String state;
public String country;
public Employee owningEmployee;
public Employee getOwningEmployee() {
return owningEmployee;
}
public void setOwningEmployee(Employee employee) {
owningEmployee = employee;
}
public boolean equals(Object o) {
if(!(o instanceof Address)) {
return false;
}
Address obj = (Address)o;
boolean equal = true;
equal = equal && street.equals(obj.street);
equal = equal && city.equals(obj.city);
equal = equal && state.equals(obj.state);
equal = equal && country.equals(obj.country);
equal = equal && owningEmployee.id == obj.owningEmployee.id;
return equal;
}
}