blob: 6122fd370da704453fbfe4768694577a5bea9a0b [file] [log] [blame]
/*
* Copyright (c) 1998, 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:
// Denise Smith - August 2011 - 2.4 - Initial implementation
package org.eclipse.persistence.testing.jaxb.json.norootelement;
import java.util.HashMap;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
import org.eclipse.persistence.testing.jaxb.json.JSONMarshalUnmarshalTestCases;
public class NoRootElementNSTestCases extends JSONMarshalUnmarshalTestCases {
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/json/norootelement/addressNS.json";
public NoRootElementNSTestCases(String name) throws Exception {
super(name);
setControlJSON(JSON_RESOURCE);
setClasses(new Class[]{Address.class});
}
@Override
public Object getControlObject() {
Address addr = new Address();
addr.setId(10);
addr.setCity("Ottawa");
addr.setStreet("Main street");
return addr;
}
@Override
public Class getUnmarshalClass(){
return Address.class;
}
@Override
public Object getReadControlObject(){
QName name = new QName("");
JAXBElement<Address> jbe = new JAXBElement<Address>(name, Address.class, (Address)getControlObject());
return jbe;
}
@Override
public Map getProperties(){
Map props = new HashMap();
Map<String, String> namespaceMap = new HashMap<String, String>();
namespaceMap.put("namespace1","ns0");
props.put(JAXBContextProperties.NAMESPACE_PREFIX_MAPPER, namespaceMap);
props.put(JAXBContextProperties.JSON_INCLUDE_ROOT, Boolean.FALSE);
return props;
}
}