blob: 89cc155f0f58f2622151b7e2438b806986da9ed1 [file] [log] [blame]
/*
* Copyright (c) 2012, 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:
// Blaise Doughan - 2.3.3 - initial implementation
package org.eclipse.persistence.testing.jaxb.xmlelementref.enums;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlElementRefs;
import jakarta.xml.bind.annotation.XmlElementWrapper;
import jakarta.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Root {
private JAXBElement<?> stringOrEnumSingle;
private List<JAXBElement<?>> stringOrEnum = new ArrayList<JAXBElement<?>>();
@XmlElementWrapper(name="collection")
@XmlElementRefs({
@XmlElementRef(name="string", type=JAXBElement.class),
@XmlElementRef(name="enum", type=JAXBElement.class)
})
public List<JAXBElement<?>> getStringOrEnum() {
return stringOrEnum;
}
public void setStringOrEnum(List<JAXBElement<?>> stringOrEnum) {
this.stringOrEnum = stringOrEnum;
}
@XmlElementRefs({
@XmlElementRef(name="string", type=JAXBElement.class),
@XmlElementRef(name="enum", type=JAXBElement.class)
})
public JAXBElement<?> getStringOrEnumSingle() {
return stringOrEnumSingle;
}
public void setStringOrEnumSingle(JAXBElement<?> stringOrEnumSingle) {
this.stringOrEnumSingle = stringOrEnumSingle;
}
@Override
public boolean equals(Object obj) {
if(null == obj || obj.getClass() != this.getClass()) {
return false;
}
Root test = (Root) obj;
if(!stringOrEnumSingle.getValue().equals(test.getStringOrEnumSingle().getValue())) {
return false;
}
if(!equals(stringOrEnum, test.getStringOrEnum())) {
return false;
}
return true;
}
private boolean equals(List<JAXBElement<?>> control, List<JAXBElement<?>> test) {
if(null == control) {
return null == test;
} else if(null == test) {
return null == control;
} else if(control.size() != test.size()) {
return false;
}
for(int x=0; x<control.size(); x++) {
if(!control.get(x).getValue().equals(test.get(x).getValue())) {
return false;
}
}
return true;
}
}