blob: 7d2ca5a5f11189090176c8cfaab3faee331992d9 [file] [log] [blame]
/*
* Copyright (c) 2011, 2021 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 - March 25/2010 - 2.1 - Initial implementation
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.mappings.anyattribute;
import java.util.Iterator;
import java.util.Map;
import javax.xml.namespace.QName;
public class Employee {
public Map<QName, String> stuff;
@jakarta.xml.bind.annotation.XmlTransient
public boolean wasGetCalled;
@jakarta.xml.bind.annotation.XmlTransient
public boolean wasSetCalled;
public Map<QName, String> getStuff() {
wasGetCalled = true;
return stuff;
}
public void setStuff(Map<QName, String> stuff) {
wasSetCalled = true;
this.stuff = stuff;
}
public boolean equals(Object obj) {
if (obj == null) { return false; }
Employee empObj;
try {
empObj = (Employee) obj;
} catch (ClassCastException e) {
return false;
}
Map<QName, String> thisStuff = this.stuff;
Map<QName, String> otherStuff = empObj.stuff;
if (thisStuff == null) {
return (otherStuff == null || otherStuff.size() == 0);
}
if (otherStuff == null) {
return (thisStuff.size() == 0);
}
if (thisStuff.size() != otherStuff.size()) {
return false;
}
Iterator<QName> values1 = thisStuff.keySet().iterator();
while(values1.hasNext()) {
Object key1 = values1.next();
Object value1 = thisStuff.get(key1);
Object value2 = otherStuff.get(key1);
if (!(value1.equals(value2))) {
return false;
}
}
return true;
}
}