blob: bedc0972b710ee9847fa54f148dfe109f91cb258 [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.NamespaceResolver;
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;
/**
* Namespace qualified XMLFragmentMapping test project
*/
public class XMLFragmentNSAttributeProject extends Project {
NamespaceResolver nsresolver;
public XMLFragmentNSAttributeProject(NamespaceResolver namespaceResolver) {
nsresolver = namespaceResolver;
addEmployeeDescriptor();
XMLLogin login = new XMLLogin();
login.setPlatform(new DOMPlatform());
}
public void addEmployeeDescriptor() {
XMLDescriptor desc = new XMLDescriptor();
desc.setJavaClass(Employee.class);
desc.setDefaultRootElement("employee");
desc.setNamespaceResolver(nsresolver);
// setup first-name mapping
XMLDirectMapping mapping = new XMLDirectMapping();
mapping.setAttributeName("firstName");
mapping.setXPath("first-name/text()");
desc.addMapping(mapping);
// setup last-name mapping
mapping = new XMLDirectMapping();
mapping.setAttributeName("lastName");
mapping.setXPath("last-name/text()");
desc.addMapping(mapping);
// setup xml-node (attribute) mapping
XMLFragmentMapping mapping2 = new XMLFragmentMapping();
mapping2.setAttributeName("xmlNode");
mapping2.setXPath("xml-node/@ns1:attribute");
desc.addMapping(mapping2);
// add the descriptor to the project
this.addDescriptor(desc);
}
}