blob: ab9f10ac438465234655cb656df365e39d070dec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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 - October 20, 2009
******************************************************************************/
package org.eclipse.persistence.testing.oxm.xmlmarshaller;
import org.eclipse.persistence.oxm.NamespaceResolver;
import org.eclipse.persistence.oxm.XMLDescriptor;
public class XMLMarshallerExceptionTestProject extends XMLMarshallerNoDefaultRootTestProject {
public XMLMarshallerExceptionTestProject() {
}
protected XMLDescriptor getEmployeeDescriptor() {
XMLDescriptor descriptor = super.getEmployeeDescriptor();
descriptor.setDefaultRootElement("thens:employee");
NamespaceResolver resolver = new NamespaceResolver();
resolver.put("thensdiff", "www.example.com/some-dir/employee.xsd");
descriptor.setNamespaceResolver(resolver);
return descriptor;
}
}