blob: e7ba7b691311e25f0b1619f103b08902573aa19e [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:
// Denise Smith - 2.4 - February 2012
package org.eclipse.persistence.testing.jaxb.uri;
import java.net.URI;
import java.util.List;
import jakarta.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class TestObject {
public URI theURI;
public List<URI> theURIs;
public boolean equals(Object compareObject){
if(compareObject instanceof TestObject){
if(theURI == null){
if(((TestObject)compareObject).theURI != null){
return false;
}
}else if(!theURI.equals(((TestObject)compareObject).theURI)){
return false;
}
if(theURIs == null){
if(((TestObject)compareObject).theURIs != null){
return false;
}
}else{
if(!theURIs.containsAll(((TestObject)compareObject).theURIs) || !((TestObject)compareObject).theURIs.containsAll(theURIs)){
return false;
}
}
return true;
}
return false;
}
}