blob: 3ed4b804367b88660241637d33e0c2d8ccfcfd04 [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 - September 2011 - 2.4
package org.eclipse.persistence.testing.jaxb.json.norootelement;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
public class IncludeRootTrueWithXMLRootElementTestCases extends IncludeRootFalseWithXMLRootElementTestCases{
public IncludeRootTrueWithXMLRootElementTestCases(String name) throws Exception {
super(name);
setControlJSON(JSON_RESOURCE_WITH_ROOT);
setWriteControlJSON(JSON_RESOURCE_WITH_ROOT);
setClasses(new Class[]{AddressWithRootElement.class});
}
@Override
public void setUp() throws Exception{
super.setUp();
jsonMarshaller.setProperty(MarshallerProperties.JSON_INCLUDE_ROOT, true);
jsonUnmarshaller.setProperty(UnmarshallerProperties.JSON_INCLUDE_ROOT, true);
}
@Override
public Class getUnmarshalClass(){
return Address.class;
}
@Override
public Object getReadControlObject() {
QName name = new QName("addressWithRootElement");
JAXBElement<AddressWithRootElement> jbe = new JAXBElement<AddressWithRootElement>(name, AddressWithRootElement.class, (AddressWithRootElement)getControlObject());
return jbe;
}
@Override
public void testJSONSchemaGeneration() throws Exception{
//not yet supported
}
}