blob: 4ffd1b4ab10b9956c2f00136f0a60a31bff6991e [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.xmlmarshaller.structureValidation.sequence.nestedGroup;
import java.net.URL;
import javax.xml.namespace.QName;
import org.eclipse.persistence.oxm.XMLConstants;
import org.eclipse.persistence.oxm.XMLField;
import org.eclipse.persistence.oxm.mappings.XMLCompositeObjectMapping;
import org.eclipse.persistence.oxm.mappings.XMLDirectMapping;
import org.eclipse.persistence.oxm.XMLDescriptor;
import org.eclipse.persistence.oxm.schema.XMLSchemaReference;
import org.eclipse.persistence.oxm.schema.XMLSchemaURLReference;
import org.eclipse.persistence.sessions.Project;
public class EmployeeProject extends Project {
public EmployeeProject() {
addDescriptor(getEmployeeDescriptor());
addDescriptor(getEmploymentInfoDescriptor());
addDescriptor(getPeriodDescriptor());
}
private XMLDescriptor getEmployeeDescriptor() {
XMLDescriptor descriptor = new XMLDescriptor();
descriptor.setJavaClass(org.eclipse.persistence.testing.oxm.xmlmarshaller.structureValidation.sequence.nestedGroup.Employee.class);
descriptor.setDefaultRootElement("employee");
XMLCompositeObjectMapping infoMapping = new XMLCompositeObjectMapping();
infoMapping.setAttributeName("_IdAndStartDateAndEndDate");
infoMapping.setXPath(".");
infoMapping.setGetMethodName("getIdAndStartDateAndEndDate");
infoMapping.setSetMethodName("setIdAndStartDateAndEndDate");
infoMapping.setReferenceClass(Employee.EmploymentInfo.class);
descriptor.addMapping(infoMapping);
URL schemaURL = ClassLoader.getSystemResource("org/eclipse/persistence/testing/oxm/xmlmarshaller/Employee_Sequence_NestedGroup.xsd");
XMLSchemaURLReference schemaRef = new XMLSchemaURLReference(schemaURL);
schemaRef.setType(XMLSchemaReference.ELEMENT);
schemaRef.setSchemaContext("/employee");
descriptor.setSchemaReference(schemaRef);
return descriptor;
}
private XMLDescriptor getEmploymentInfoDescriptor() {
XMLDescriptor descriptor = new XMLDescriptor();
descriptor.setJavaClass(Employee.EmploymentInfo.class);
XMLDirectMapping idMapping = new XMLDirectMapping();
idMapping.setAttributeName("_Id");
idMapping.setXPath("id/text()");
idMapping.setGetMethodName("getId");
idMapping.setSetMethodName("setId");
descriptor.addMapping(idMapping);
XMLCompositeObjectMapping periodMapping = new XMLCompositeObjectMapping();
periodMapping.setAttributeName("_G1");
periodMapping.setXPath(".");
periodMapping.setGetMethodName("getG1");
periodMapping.setSetMethodName("setG1");
periodMapping.setReferenceClass(org.eclipse.persistence.testing.oxm.xmlmarshaller.structureValidation.Period.class);
descriptor.addMapping(periodMapping);
URL schemaURL = ClassLoader.getSystemResource("org/eclipse/persistence/testing/oxm/xmlmarshaller/Employee_Sequence_NestedGroup.xsd");
XMLSchemaURLReference schemaRef = new XMLSchemaURLReference(schemaURL);
schemaRef.setType(XMLSchemaReference.ELEMENT);
schemaRef.setSchemaContext("/employee");
descriptor.setSchemaReference(schemaRef);
return descriptor;
}
private XMLDescriptor getPeriodDescriptor() {
XMLDescriptor descriptor = new XMLDescriptor();
descriptor.setJavaClass(org.eclipse.persistence.testing.oxm.xmlmarshaller.structureValidation.Period.class);
XMLDirectMapping startDateMapping = new XMLDirectMapping();
startDateMapping.setAttributeName("_StartDate");
startDateMapping.setGetMethodName("getStartDate");
startDateMapping.setSetMethodName("setStartDate");
QName qname = new QName(javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI, XMLConstants.DATE);
XMLField field = new XMLField("startDate/text()");
field.setSchemaType(qname);
startDateMapping.setField(field);
descriptor.addMapping(startDateMapping);
XMLDirectMapping endDateMapping = new XMLDirectMapping();
endDateMapping.setAttributeName("_EndDate");
endDateMapping.setGetMethodName("getEndDate");
endDateMapping.setSetMethodName("setEndDate");
qname = new QName(javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI, XMLConstants.DATE);
field = new XMLField("endDate/text()");
field.setSchemaType(qname);
endDateMapping.setField(field);
descriptor.addMapping(endDateMapping);
URL schemaURL = ClassLoader.getSystemResource("org/eclipse/persistence/testing/oxm/xmlmarshaller/Employee_Sequence_NestedGroup.xsd");
XMLSchemaURLReference schemaRef = new XMLSchemaURLReference(schemaURL);
schemaRef.setType(XMLSchemaReference.GROUP);
schemaRef.setSchemaContext("/G1");
descriptor.setSchemaReference(schemaRef);
return descriptor;
}
}