blob: 7cc1d754cb6e28c8c0252a3e8165076ba2784ca3 [file] [log] [blame]
/*
* Copyright (c) 2011, 2020 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:
// rbarkhouse - 2010-03-04 12:22:11 - initial implementation
package org.eclipse.persistence.testing.jaxb.dynamic.secondproject;
import org.eclipse.persistence.oxm.NamespaceResolver;
import org.eclipse.persistence.oxm.XMLConstants;
import org.eclipse.persistence.oxm.XMLDescriptor;
import org.eclipse.persistence.oxm.mappings.XMLDirectMapping;
import org.eclipse.persistence.oxm.mappings.nullpolicy.XMLNullRepresentationType;
import org.eclipse.persistence.sessions.Project;
public class TestModelSecondProject extends Project {
private NamespaceResolver nsResolver;
public TestModelSecondProject() {
super();
nsResolver = new NamespaceResolver();
nsResolver.put("ns0", "myNamespace");
nsResolver.put("xsi", javax.xml.XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI);
addEmployeeDescriptor();
}
public void addEmployeeDescriptor() {
XMLDescriptor descriptor = new XMLDescriptor();
descriptor.setJavaClassName("org.persistence.testing.jaxb.dynamic.zzz.Employee");
descriptor.setDefaultRootElement("ns0:employee");
descriptor.setNamespaceResolver(nsResolver);
XMLDirectMapping name = new XMLDirectMapping();
name.setAttributeName("name");
name.setXPath("name/text()");
descriptor.addMapping(name);
XMLDirectMapping department = new XMLDirectMapping();
department.setAttributeName("department");
department.setXPath("department/text()");
department.getNullPolicy().setNullRepresentedByXsiNil(true);
department.getNullPolicy().setMarshalNullRepresentation(XMLNullRepresentationType.XSI_NIL);
descriptor.addMapping(department);
this.addDescriptor(descriptor);
}
}