/******************************************************************************* * Copyright (c) 1998, 2015 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.testing.sdo.helper.xsdhelper.define; import commonj.sdo.Type; import java.util.ArrayList; import java.util.List; import junit.textui.TestRunner; import org.eclipse.persistence.sdo.SDOConstants; import org.eclipse.persistence.sdo.SDOProperty; import org.eclipse.persistence.sdo.SDOType; import org.eclipse.persistence.internal.helper.ClassConstants; public class PurchaseOrderWithAnnotationsDefineTestCases extends PurchaseOrderDefineTestCases { public PurchaseOrderWithAnnotationsDefineTestCases(String name) { super(name); } public String getSchemaToDefine() { return "org/eclipse/persistence/testing/sdo/schemas/PurchaseOrderWithAnnotations.xsd"; } public static void main(String[] args) { TestRunner.run(PurchaseOrderWithAnnotationsDefineTestCases.class); } public List getControlTypes() { List types = new ArrayList(); String uri = null; Type stringType = typeHelper.getType("commonj.sdo", "String"); Type intType = typeHelper.getType("commonj.sdo", "Int"); Type integerType = SDOConstants.SDO_INTEGER; //Type integerType = SDOConstants.SDO_INTOBJECT; Type yearMonthDayType = typeHelper.getType("commonj.sdo", "YearMonthDay"); Type decimalType = typeHelper.getType("commonj.sdo", "Decimal"); String javaPackage = "com.example.myPackage"; SDOType gregorianDateType = new SDOType(uri, "MyGregorianDate"); gregorianDateType.setXsd(true); gregorianDateType.setXsdLocalName("MyGregorianDate"); gregorianDateType.setDataType(true); List aliasNames = new ArrayList(); aliasNames.add("TheGregorianDate"); //gregorianDateType.setInstanceClassName("java.xml.datatype.GregorianCalendar"); gregorianDateType.setInstanceClassName("java.sql.Time"); gregorianDateType.setAliasNames(aliasNames); /****ADDRESS TYPE*****/ //ADDRESS TYPE SDOType USaddrType = new SDOType(uri, "USAddress"); USaddrType.setXsd(true); USaddrType.setXsdLocalName("USAddress"); USaddrType.setDataType(false); USaddrType.setInstanceClassName(javaPackage + "." + "USAddress"); SDOProperty addrNameProp = new SDOProperty(aHelperContext); addrNameProp.setXsd(true); addrNameProp.setXsdLocalName("name"); //addrNameProp.setAttribute(true); addrNameProp.setName("name"); addrNameProp.setType(stringType); addrNameProp.setContainingType(USaddrType); USaddrType.getDeclaredProperties().add(addrNameProp); SDOProperty streetProp = new SDOProperty(aHelperContext); streetProp.setName("street"); streetProp.setXsd(true); streetProp.setXsdLocalName("street"); streetProp.setType(stringType); //streetProp.setAttribute(true); streetProp.setContainingType(USaddrType); USaddrType.getDeclaredProperties().add(streetProp); SDOProperty cityProp = new SDOProperty(aHelperContext); cityProp.setName("city"); cityProp.setXsdLocalName("city"); cityProp.setXsd(true); cityProp.setType(stringType); //cityProp.setAttribute(true); cityProp.setContainingType(USaddrType); USaddrType.getDeclaredProperties().add(cityProp); SDOProperty stateProp = new SDOProperty(aHelperContext); stateProp.setName("state"); stateProp.setXsd(true); stateProp.setXsdLocalName("state"); stateProp.setType(stringType); //stateProp.setAttribute(true); stateProp.setContainingType(USaddrType); USaddrType.getDeclaredProperties().add(stateProp); SDOProperty zipProp = new SDOProperty(aHelperContext); zipProp.setXsd(true); zipProp.setName("zip"); zipProp.setXsdLocalName("zip"); zipProp.setType(decimalType); //zipProp.setAttribute(true); zipProp.setContainingType(USaddrType); USaddrType.getDeclaredProperties().add(zipProp); SDOProperty countryProp = new SDOProperty(aHelperContext); countryProp.setXsd(true); countryProp.setName("country"); countryProp.setXsdLocalName("country"); countryProp.setType(stringType); //countryProp.setAttribute(true); countryProp.setDefault("US"); countryProp.setContainingType(USaddrType); USaddrType.getDeclaredProperties().add(countryProp); /****QUANTITY TYPE*****/ SDOType quantityType = new SDOType(uri, "quantityType"); quantityType.setXsd(true); quantityType.setXsdLocalName("quantityType"); quantityType.setDataType(true); quantityType.getBaseTypes().add(integerType); //quantityType.setInstanceClassName(ClassConstants.BIGINTEGER.getName()); //quantityType.setInstanceClassName("java.lang.Integer"); quantityType.setInstanceClassName(ClassConstants.PINT.getName()); /****SKU TYPE*****/ SDOType SKUType = new SDOType(uri, "SKUSDO"); SKUType.setDataType(true); SKUType.setXsd(true); SKUType.setXsdLocalName("SKU"); //SKUType.getBaseTypes().add(stringType); //SKUType.setInstanceClassName("java.lang.String"); SKUType.setInstanceClassName("com.example.myPackage.SKU"); /****ITEM TYPE*****/ SDOType itemType = new SDOType(uri, "ItemSDO"); itemType.setXsd(true); itemType.setDataType(false); itemType.setInstanceClassName(javaPackage + "." + "ItemSDO"); itemType.setXsdLocalName("Item"); SDOProperty productNameProp = new SDOProperty(aHelperContext); productNameProp.setXsd(true); productNameProp.setName("productName"); productNameProp.setXsdLocalName("productName"); productNameProp.setType(stringType); productNameProp.setReadOnly(true); //productNameProp.setAttribute(true); productNameProp.setContainingType(itemType); itemType.getDeclaredProperties().add(productNameProp); SDOProperty pOrderProp = new SDOProperty(aHelperContext); pOrderProp.setXsd(true); pOrderProp.setName("porder"); pOrderProp.setXsdLocalName("porder"); pOrderProp.setType(stringType); //pOrderProp.setElement(true); pOrderProp.setInstanceProperty(SDOConstants.XMLELEMENT_PROPERTY, Boolean.TRUE); pOrderProp.setMany(false); pOrderProp.setContainment(true); pOrderProp.setContainment(false); pOrderProp.setContainingType(itemType); itemType.getDeclaredProperties().add(pOrderProp); SDOProperty quantityProp = new SDOProperty(aHelperContext); quantityProp.setXsd(true); quantityProp.setName("quantity"); quantityProp.setXsdLocalName("quantity"); //quantityProp.setType(quantityType); quantityProp.setType(integerType); //quantityProp.setAttribute(true); quantityProp.setContainingType(itemType); itemType.getDeclaredProperties().add(quantityProp); SDOProperty partNumProp = new SDOProperty(aHelperContext); partNumProp.setXsd(true); partNumProp.setName("partNumSDO"); partNumProp.setXsdLocalName("partNum"); partNumProp.setType(SKUType); //partNumProp.setAttribute(true); partNumProp.setContainingType(itemType); itemType.getDeclaredProperties().add(partNumProp); SDOProperty USPriceProp = new SDOProperty(aHelperContext); USPriceProp.setXsd(true); USPriceProp.setName("USPrice"); USPriceProp.setXsdLocalName("USPrice"); USPriceProp.setType(decimalType); //USPriceProp.setAttribute(true); USPriceProp.setContainingType(itemType); itemType.getDeclaredProperties().add(USPriceProp); SDOProperty itemCommentProp = new SDOProperty(aHelperContext); itemCommentProp.setXsd(true); itemCommentProp.setName("comment"); itemCommentProp.setXsdLocalName("comment"); itemCommentProp.setType(stringType); itemCommentProp.setContainment(false); //itemCommentProp.setAttribute(true); List names = new ArrayList(); names.add("itemComment"); itemCommentProp.setAliasNames(names); itemCommentProp.setContainingType(itemType); itemType.getDeclaredProperties().add(itemCommentProp); SDOProperty shipDateProp = new SDOProperty(aHelperContext); shipDateProp.setXsd(true); shipDateProp.setName("shipDate"); shipDateProp.setXsdLocalName("shipDate"); // shipDateProp.setType(yearMonthDayType); shipDateProp.setType(SDOConstants.SDO_STRING); shipDateProp.setContainment(false); //shipDateProp.setAttribute(true); shipDateProp.setContainingType(itemType); itemType.getDeclaredProperties().add(shipDateProp); /****ITEMS TYPE*****/ SDOType itemsType = new SDOType(uri, "Items"); itemsType.setXsd(true); itemsType.setXsdLocalName("Items"); itemsType.setDataType(false); itemsType.setInstanceClassName(javaPackage + "." + "Items"); SDOProperty itemProp = new SDOProperty(aHelperContext); itemProp.setXsd(true); itemProp.setName("item"); itemProp.setXsdLocalName("item"); itemProp.setContainment(true); itemProp.setMany(true); //itemProp.setContainingType(itemType); //itemProp.setElement(true); itemProp.setInstanceProperty(SDOConstants.XMLELEMENT_PROPERTY, Boolean.TRUE); itemProp.setContainingType(itemsType); itemProp.setType(itemType); itemsType.getDeclaredProperties().add(itemProp); /****PURCHASEORDER TYPE*****/ SDOType POtype = new SDOType(uri, "PurchaseOrder"); POtype.setXsd(true); POtype.setXsdLocalName("PurchaseOrder"); POtype.setDataType(false); names = new ArrayList(); names.add("Purchase"); POtype.setAliasNames(names); POtype.setInstanceClassName(javaPackage + "." + "PurchaseOrder"); SDOProperty shipToProp = new SDOProperty(aHelperContext); shipToProp.setXsd(true); shipToProp.setName("shipTo"); shipToProp.setXsdLocalName("shipTo"); shipToProp.setContainment(true); names = new ArrayList(); names.add("mailingAddress"); shipToProp.setAliasNames(names); shipToProp.setMany(true); //shipToProp.setElement(true); shipToProp.setInstanceProperty(SDOConstants.XMLELEMENT_PROPERTY, Boolean.TRUE); shipToProp.setContainingType(POtype); shipToProp.setType(USaddrType); SDOProperty billToProp = new SDOProperty(aHelperContext); billToProp.setXsd(true); billToProp.setName("billToSDO"); billToProp.setXsdLocalName("billTo"); billToProp.setReadOnly(true); billToProp.setContainment(true); // billToProp.setElement(true); billToProp.setInstanceProperty(SDOConstants.XMLELEMENT_PROPERTY, Boolean.TRUE); billToProp.setContainingType(POtype); billToProp.setType(USaddrType); SDOProperty itemsProp = new SDOProperty(aHelperContext); itemsProp.setXsd(true); itemsProp.setName("items"); itemsProp.setXsdLocalName("items"); itemsProp.setContainment(true); //itemsProp.setElement(true); itemsProp.setInstanceProperty(SDOConstants.XMLELEMENT_PROPERTY, Boolean.TRUE); itemsProp.setContainingType(POtype); itemsProp.setType(itemsType); SDOProperty commentProp = new SDOProperty(aHelperContext); commentProp.setXsd(true); commentProp.setName("comment"); commentProp.setXsdLocalName("comment"); commentProp.setType(stringType); //commentProp.setAttribute(true); commentProp.setContainingType(POtype); commentProp.setContainment(false); SDOProperty orderDateProp = new SDOProperty(aHelperContext); orderDateProp.setXsd(true); orderDateProp.setName("orderDate"); orderDateProp.setXsdLocalName("orderDate"); //orderDateProp.setType(yearMonthDayType); //orderDateProp.setAttribute(true); orderDateProp.setType(gregorianDateType); orderDateProp.setContainingType(POtype); orderDateProp.setContainment(false); SDOProperty topPriorityItemProp = new SDOProperty(aHelperContext); topPriorityItemProp.setXsd(true); topPriorityItemProp.setName("topPriorityItems"); topPriorityItemProp.setXsdLocalName("topPriorityItems"); topPriorityItemProp.setType(itemType); topPriorityItemProp.setMany(false); //topPriorityItemProp.setElement(true); topPriorityItemProp.setInstanceProperty(SDOConstants.XMLELEMENT_PROPERTY, Boolean.TRUE); // TODO: 20060906 //topPriorityItemProp.setOpposite(pOrderProp); topPriorityItemProp.setContainment(true); topPriorityItemProp.setContainingType(POtype); POtype.getDeclaredProperties().add(shipToProp); POtype.getDeclaredProperties().add(billToProp); POtype.getDeclaredProperties().add(itemsProp); POtype.getDeclaredProperties().add(commentProp); POtype.getDeclaredProperties().add(orderDateProp); POtype.getDeclaredProperties().add(topPriorityItemProp); types.add(itemsType); types.add(gregorianDateType); types.add(USaddrType); types.add(SKUType); types.add(itemType); types.add(POtype); types.add(quantityType); return types; } }