blob: c1fdaf63083d26a32e3beaf96c0cac98495f5fd6 [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:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.internal.xr.sxf;
// Javase imports
// Java extension imports
// EclipseLink imports
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.oxm.NamespaceResolver;
import org.eclipse.persistence.oxm.XMLDescriptor;
import org.eclipse.persistence.oxm.XMLLogin;
import org.eclipse.persistence.oxm.mappings.XMLFragmentCollectionMapping;
import org.eclipse.persistence.oxm.platform.DOMPlatform;
import org.eclipse.persistence.oxm.schema.XMLSchemaReference;
import org.eclipse.persistence.oxm.schema.XMLSchemaURLReference;
import org.eclipse.persistence.sessions.Project;
import static org.eclipse.persistence.internal.xr.sxf.SimpleXMLFormat.DEFAULT_SIMPLE_XML_FORMAT_TAG;
import static org.eclipse.persistence.internal.xr.sxf.SimpleXMLFormat.DEFAULT_SIMPLE_XML_TAG;
@SuppressWarnings("serial")
public class SimpleXMLFormatProject extends Project {
private NamespaceResolver ns;
public SimpleXMLFormatProject() {
ns = new NamespaceResolver();
setName("SimpleXMLFormatProject");
applyLogin();
addDescriptor(buildXRRowSetModelDescriptor());
}
public void applyLogin() {
XMLLogin login = new XMLLogin();
login.setPlatform(new DOMPlatform());
setDatasourceLogin(login);
}
public ClassDescriptor buildXRRowSetModelDescriptor() {
XMLDescriptor descriptor = new XMLDescriptor();
descriptor.descriptorIsAggregate();
descriptor.setJavaClass(SimpleXMLFormatModel.class);
descriptor.setAlias(DEFAULT_SIMPLE_XML_FORMAT_TAG);
descriptor.setNamespaceResolver(ns);
descriptor.setDefaultRootElement(DEFAULT_SIMPLE_XML_FORMAT_TAG);
XMLSchemaURLReference schemaReference = new XMLSchemaURLReference("");
schemaReference.setSchemaContext("/" + DEFAULT_SIMPLE_XML_FORMAT_TAG);
schemaReference.setType(XMLSchemaReference.COMPLEX_TYPE);
descriptor.setSchemaReference(schemaReference);
XMLFragmentCollectionMapping fragMapping = new XMLFragmentCollectionMapping();
fragMapping.setAttributeName("simpleXML");
fragMapping.setXPath(DEFAULT_SIMPLE_XML_TAG);
descriptor.addMapping(fragMapping);
return descriptor;
}
}