blob: 4da011785feea8a94b3f1164b4d113ca10a73945 [file] [log] [blame]
/*
* Copyright (c) 1998, 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 February, 2013
package org.eclipse.persistence.testing.jaxb.map;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementWrapper;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
@XmlRootElement(name="root")
@XmlType(name="root")
public class RootWrapper {
@XmlElementWrapper(name="map1")
public Map<String, String> stringStringMap;
@XmlElementWrapper(name="map2")
public Map<Integer,ComplexValue > integerComplexValueMap;
@XmlElement(name="map3")
public Map<String,String[] > stringArrayMap;
@XmlElement(name="map4")
public Map<String,List<String>> stringListMap;
public boolean equals(Object obj){
if(!(obj instanceof RootWrapper)) {
return false;
}
RootWrapper compare = (RootWrapper)obj;
if (stringArrayMap != null ? compare.stringArrayMap == null || !Arrays.deepEquals(stringArrayMap.keySet().toArray(), compare.stringArrayMap.keySet().toArray()) || !Arrays.deepEquals(stringArrayMap.values().toArray(), compare.stringArrayMap.values().toArray()) : compare.stringArrayMap != null)
return false;
if (stringListMap != null ? compare.stringListMap == null || !Arrays.deepEquals(stringListMap.keySet().toArray(), compare.stringListMap.keySet().toArray()) || !Arrays.deepEquals(stringListMap.values().toArray(), compare.stringListMap.values().toArray()) : compare.stringListMap != null)
return false;
if (integerComplexValueMap != null ? !integerComplexValueMap.equals(compare.integerComplexValueMap) : compare.integerComplexValueMap != null)
return false;
return stringStringMap.equals(compare.stringStringMap) && integerComplexValueMap.equals(compare.integerComplexValueMap);
}
}