/******************************************************************************* * Copyright (c) 2011, 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: * Matt MacIvor - 2.4 ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.prefixmapper; import org.eclipse.persistence.jaxb.MarshallerProperties; import org.eclipse.persistence.jaxb.UnmarshallerProperties; import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases; public class PrefixMapperTestCases extends JAXBWithJSONTestCases { private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/prefixmapper/employee.xml"; private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/prefixmapper/employee.json"; public PrefixMapperTestCases(String name) throws Exception { super(name); setClasses(new Class[]{Employee.class, Person.class}); jaxbMarshaller.setProperty(MarshallerProperties.NAMESPACE_PREFIX_MAPPER, new MyPrefixMapper()); jaxbUnmarshaller.setProperty(UnmarshallerProperties.JSON_NAMESPACE_PREFIX_MAPPER, new MyPrefixMapper()); setControlDocument(XML_RESOURCE); setControlJSON(JSON_RESOURCE); } @Override protected Object getControlObject() { Employee emp = new Employee(); emp.firstName = "John"; emp.lastName = "Doe"; emp.address = "123 Fake Street"; emp.employeeId = 4321; emp.manager = new Employee(); emp.manager.firstName = "Bob"; emp.manager.lastName = "Jones"; emp.manager.address = "234 Some Street"; ((Employee)emp.manager).employeeId = 9876; return emp; } }