/******************************************************************************* * Copyright (c) 2012, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Denise Smith - 2.4 - April 2012 ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.json.rootlevellist; import java.util.ArrayList; import java.util.Collection; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.namespace.QName; import org.eclipse.persistence.testing.jaxb.json.JSONMarshalUnmarshalTestCases; public class WithoutXmlRootElementJAXBElementTestCases extends JSONMarshalUnmarshalTestCases { private static final String CONTROL_JSON = "org/eclipse/persistence/testing/jaxb/json/rootlevellist/JAXBElement.json"; public WithoutXmlRootElementJAXBElementTestCases(String name) throws Exception { super(name); setClasses(new Class[] {WithoutXmlRootElementRoot.class}); setControlJSON(CONTROL_JSON); } @Override public Class getUnmarshalClass(){ return WithoutXmlRootElementRoot.class; } @Override protected Collection<JAXBElement<WithoutXmlRootElementRoot>> getControlObject() { List<JAXBElement<WithoutXmlRootElementRoot>> list = new ArrayList<JAXBElement<WithoutXmlRootElementRoot>>(2); WithoutXmlRootElementRoot foo = new WithoutXmlRootElementRoot(); foo.setName("FOO"); JAXBElement<WithoutXmlRootElementRoot> jbe1 = new JAXBElement<WithoutXmlRootElementRoot>(new QName("roottest1"), WithoutXmlRootElementRoot.class, foo); list.add(jbe1); WithoutXmlRootElementRoot bar = new WithoutXmlRootElementRoot(); bar.setName("BAR"); JAXBElement<WithoutXmlRootElementRoot> jbe2 = new JAXBElement<WithoutXmlRootElementRoot>(new QName("roottest2"), WithoutXmlRootElementRoot.class, bar); list.add(jbe2); return list; } @Override public Object getReadControlObject() { JAXBElement elem = new JAXBElement(new QName(""),WithoutXmlRootElementRoot.class, getControlObject() ); return elem; } }