blob: 72f7cae44097100c796909494074d3e9b2e7c54d [file] [log] [blame]
/*
* Copyright (c) 1998, 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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.mappings.xmlfragment;
import org.eclipse.persistence.oxm.XMLDescriptor;
import org.eclipse.persistence.oxm.XMLLogin;
import org.eclipse.persistence.oxm.mappings.XMLDirectMapping;
import org.eclipse.persistence.oxm.mappings.XMLFragmentMapping;
import org.eclipse.persistence.oxm.platform.DOMPlatform;
import org.eclipse.persistence.sessions.Project;
/**
* @version $Header: XMLFragmentElementProject.java 02-nov-2006.10:57:28 gyorke Exp $
* @author mmacivor
* @since release specific (what release of product did this appear in)
*/
public class XMLFragmentElementProject extends Project {
public XMLFragmentElementProject() {
addEmployeeDescriptor();
XMLLogin login = new XMLLogin();
login.setPlatform(new DOMPlatform());
//this.setLogin(login);
}
public void addEmployeeDescriptor() {
XMLDescriptor desc = new XMLDescriptor();
desc.setJavaClass(Employee.class);
desc.setDefaultRootElement("employee");
XMLDirectMapping mapping = new XMLDirectMapping();
mapping.setAttributeName("firstName");
mapping.setXPath("first-name/text()");
desc.addMapping(mapping);
mapping = new XMLDirectMapping();
mapping.setAttributeName("lastName");
mapping.setXPath("last-name/text()");
desc.addMapping(mapping);
XMLFragmentMapping mapping2 = new XMLFragmentMapping();
mapping2.setAttributeName("xmlNode");
mapping2.setXPath("xml-node");
desc.addMapping(mapping2);
//desc.setShouldPreserveDocument(true);
this.addDescriptor(desc);
}
}