blob: f9b64ce2fbac32212ee86c021e87675760a90593 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// Matt MacIvor - 2.4 - initial implementation
package org.eclipse.persistence.testing.jaxb.annotations.xmljoinnode.xmlvalue;
import java.util.ArrayList;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class XmlJoinNodesWithValueTestCases extends JAXBWithJSONTestCases {
private static final String XML_RESOURCE="org/eclipse/persistence/testing/jaxb/annotations/xmljoinnode/xmlvalue/root.xml";
private static final String JSON_RESOURCE="org/eclipse/persistence/testing/jaxb/annotations/xmljoinnode/xmlvalue/root.json";
public XmlJoinNodesWithValueTestCases(String name) throws Exception {
super(name);
setClasses(new Class<?>[]{Root.class, Order.class, Customer.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
jaxbMarshaller.setProperty(MarshallerProperties.JSON_VALUE_WRAPPER, "value");
jaxbUnmarshaller.setProperty(UnmarshallerProperties.JSON_VALUE_WRAPPER, "value");
}
@Override
protected Object getControlObject() {
Root root = new Root();
root.customers = new ArrayList<Customer>();
root.orders = new ArrayList<Order>();
Order order = new Order();
order.id = "123";
order.itemId = "456";
root.orders.add(order);
Customer customer = new Customer();
customer.info = "value";
customer.order = order;
root.customers.add(customer);
return root;
}
}