/******************************************************************************* * Copyright (c) 2013, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Blaise Doughan - 2.5.1 - initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.json.wrapper; import java.util.*; import javax.xml.bind.annotation.*; import org.eclipse.persistence.oxm.annotations.XmlPath; @XmlRootElement public class WrapperAndXmlPathRoot { @XmlPath("personal-info/name/text()") public String name; @XmlElementWrapper @XmlElement(name="foo") public List<WrapperAndXmlPathRoot> foos = new ArrayList<WrapperAndXmlPathRoot>(); @Override public boolean equals(Object obj) { if(null == obj || obj.getClass() != this.getClass()) { return false; } WrapperAndXmlPathRoot test = (WrapperAndXmlPathRoot) obj; if(!equals(name, test.name)) { return false; } return equals(foos, test.foos); } private boolean equals(String control, String test) { if(null == control) { return null == test; } else if(null == test) { return null == control; } return control.equals(test); } private boolean equals(List<?> control, List<?> 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).equals(test.get(x))) { return false; } } return true; } }