[jboss-svn-commits] JBL Code SVN: r11417 - in labs/jbossesb/trunk/product: core/listeners/src/org/jboss/soa/esb/listeners/gateway/scripts and 8 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Apr 27 11:28:41 EDT 2007


Author: tfennelly
Date: 2007-04-27 11:28:41 -0400 (Fri, 27 Apr 2007)
New Revision: 11417

Added:
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Address.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CancelOrder.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Contact.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CustomerOrder.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Item.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderHeader.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderInquiry.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderManager.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Party.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/RetailerCallback.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderFault.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderNotification.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/Shipping.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingRequest.java
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingResponse.java
Modified:
   labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/GroovyGateway.java
   labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/scripts/MessageInjectionConsole.groovy
   labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/lifecycle/AbstractThreadedManagedLifecycle.java
   labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/build.xml
   labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/jboss-esb.xml
Log:
Updated quickstart to make it build without generating from the wsdl - it's too unreliable

Modified: labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/GroovyGateway.java
===================================================================
--- labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/GroovyGateway.java	2007-04-27 15:21:37 UTC (rev 11416)
+++ labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/GroovyGateway.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -55,7 +55,7 @@
  *  println "Starting loop in listener..."
  *  while(!stopped) {
  *      print "."
- *      stopped = gateway.{@link GroovyGateway#waitUntilStopped(long) waitUntilStopped}(200);
+ *      stopped = gateway.{@link GroovyGateway#waitUntilStopping(long) waitUntilStopping}(200);
  *  }
  *  println ""
  *  println "loop ended"

Modified: labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/scripts/MessageInjectionConsole.groovy
===================================================================
--- labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/scripts/MessageInjectionConsole.groovy	2007-04-27 15:21:37 UTC (rev 11416)
+++ labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/scripts/MessageInjectionConsole.groovy	2007-04-27 15:28:41 UTC (rev 11417)
@@ -64,7 +64,7 @@
 }
 
 // Wait until the gateway is told to shutdown....
-while(!gateway.waitUntilStopped(500)) {
+while(!gateway.waitUntilStopping(500)) {
 }
 
 frame.dispose()
\ No newline at end of file

Modified: labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/lifecycle/AbstractThreadedManagedLifecycle.java
===================================================================
--- labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/lifecycle/AbstractThreadedManagedLifecycle.java	2007-04-27 15:21:37 UTC (rev 11416)
+++ labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/lifecycle/AbstractThreadedManagedLifecycle.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -235,8 +235,18 @@
         }
         fireStateChangedEvent(origState, newState) ;
     }
-    
+
     /**
+     * Wait until the associated thread has changed to a state of "STOPPING".
+     * @param terminationPeriod The maximum delay expected for the termination, specified in milliseconds.
+     * @return true if the thread changes state to "STOPPING" within the expected period, false otherwise.
+     */
+    public boolean waitUntilStopping(final long terminationPeriod)
+    {
+        return waitForRunningStateChange(ManagedLifecycleThreadState.STOPPING, terminationPeriod) ;
+    }
+
+    /**
      * Wait until the associated thread has stopped.
      * @return true if the thread stops within the expected period, false otherwise.
      */

Modified: labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml	2007-04-27 15:21:37 UTC (rev 11416)
+++ labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml	2007-04-27 15:28:41 UTC (rev 11417)
@@ -101,7 +101,7 @@
     <target name="deploy" depends="compile">
 		<description>deploy				will deploy the Quickstart .esb archive to JBoss ESB Server
     	</description>
-		<echo>Deploying Quickstart to JBoss ESB Server...</echo>
+		<echo>Deploying Quickstart to JBoss ESB/App Server...</echo>
 
         <mkdir dir="${build.dir}/META-INF" />
         <copy todir="${build.dir}/META-INF">
@@ -120,7 +120,7 @@
         <antcall target="deploy-esb-archive-after" />
 
         <echo message='${line.separator}******************' />
-        <echo>Quickstart deployed to target JBoss ESB Server at '${org.jboss.esb.server.deploy.dir}'.</echo>
+        <echo>Quickstart deployed to target JBoss ESB/App Server at '${org.jboss.esb.server.deploy.dir}'.</echo>
         <echo>1.  Check your ESB Server console to make sure the deployment was executed without errors.</echo>
         <echo>2.  Run 'ant runtest' to run the Quickstart.</echo>
         <echo>3.  Check your ESB Server console again.  The Quickstart should have produced some output.</echo>
@@ -134,7 +134,7 @@
 		           <fileset dir="${build.dir}" includes="*.jar,*.war"/>
 		           <fileset dir="${build.dir}" includes="deployment.xml"/>
 		           <fileset dir="${build.dir}" includes="META-INF/**" />
-		           <!--fileset dir="${basedir}/src" excludes="**/*.java" /-->
+		           <fileset dir="${basedir}/src" excludes="**/*.java" /> <!-- Please leave the src dir in here! -->
 		           <fileset dir="${basedir}" includes="jbm-queue-service.xml"/>
 		           <fileset dir="${basedir}" includes="${additional.deploys}" excludes="build/**" />
         </jar>

Modified: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/build.xml	2007-04-27 15:21:37 UTC (rev 11416)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/build.xml	2007-04-27 15:28:41 UTC (rev 11417)
@@ -3,24 +3,14 @@
     <property name="additional.deploys" value="jbmq-service.xml,groovy/**"/>
 
     <!-- Import the base Ant build script... -->
-    <import file="../base-build.xml"/>
+    <import file="../conf/base-build.xml"/>
 
-    <target name="compile" depends="clean">
-        <antcall target="wstools">
-            <param name="config" value="bpel/resources/wsdl/wstools-config-ordermanager.xml"/>
-            <param name="servicename" value="OrderManager"/>
-        </antcall>
-        <antcall target="wstools">
-            <param name="config" value="bpel/resources/wsdl/wstools-config-shipping.xml"/>
-            <param name="servicename" value="Shipping"/>
-        </antcall>
-
+    <target name="compile">
 		<mkdir dir="${classes}" />
 		<javac srcdir="src" destdir="${classes}">
 			<classpath>
                 <path refid="compile-classpath" />
-                <fileset dir="${jbosshome.dir}/client" includes="jbossws-client.jar,jboss-remoting.jar"/>
-                <fileset dir="build" includes="*-bindings.jar"/>
+                <fileset dir="${org.jboss.esb.server.home}/client" includes="jbossws-client.jar,jboss-remoting.jar"/>
             </classpath>
         </javac>
 	</target>

Modified: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/jboss-esb.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/jboss-esb.xml	2007-04-27 15:21:37 UTC (rev 11416)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/jboss-esb.xml	2007-04-27 15:28:41 UTC (rev 11417)
@@ -88,22 +88,12 @@
         </service>
 
         <service category="Helper_SOAPClient" name="Helper_SOAPClient" description="Groovy Helper Service">
-
             <listeners>
                 <groovy-listener name="soap-client" script="MessageInjectionConsole" is-gateway="true" />
-
                 <jms-listener name="JMS-Helper-ESBListener" busidref="GroovyService"/>
             </listeners>
             <actions>
-                <action name="print-before" class="org.jboss.soa.esb.actions.SystemPrintln">
-                    <property name="message" value="[Quickstart_webservice_bpel] Message Before GroovyAction."/>
-                </action>
-
                 <action name="groovy" class="org.jboss.soa.esb.actions.scripting.GroovyActionProcessor" />
-
-                <action name="print-after" class="org.jboss.soa.esb.actions.SystemPrintln">
-                    <property name="message" value="[Quickstart_webservice_bpel] Message After GroovyAction."/>
-                </action>
             </actions>
         </service>
 

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Address.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Address.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Address.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,55 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  Address
+{
+
+protected java.lang.String street1;
+
+protected java.lang.String street2;
+
+protected java.lang.String city;
+
+protected java.lang.String state;
+
+protected java.lang.String zip;
+public Address(){}
+
+public Address(java.lang.String street1, java.lang.String street2, java.lang.String city, java.lang.String state, java.lang.String zip){
+this.street1=street1;
+this.street2=street2;
+this.city=city;
+this.state=state;
+this.zip=zip;
+}
+public java.lang.String getStreet1() { return street1 ;}
+
+public void setStreet1(java.lang.String street1){ this.street1=street1; }
+
+public java.lang.String getStreet2() { return street2 ;}
+
+public void setStreet2(java.lang.String street2){ this.street2=street2; }
+
+public java.lang.String getCity() { return city ;}
+
+public void setCity(java.lang.String city){ this.city=city; }
+
+public java.lang.String getState() { return state ;}
+
+public void setState(java.lang.String state){ this.state=state; }
+
+public java.lang.String getZip() { return zip ;}
+
+public void setZip(java.lang.String zip){ this.zip=zip; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Address.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CancelOrder.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CancelOrder.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CancelOrder.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  CancelOrder
+{
+
+protected com.activebpel.ordermanagement.OrderInquiry orderInquiry;
+public CancelOrder(){}
+
+public CancelOrder(com.activebpel.ordermanagement.OrderInquiry orderInquiry){
+this.orderInquiry=orderInquiry;
+}
+public com.activebpel.ordermanagement.OrderInquiry getOrderInquiry() { return orderInquiry ;}
+
+public void setOrderInquiry(com.activebpel.ordermanagement.OrderInquiry orderInquiry){ this.orderInquiry=orderInquiry; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CancelOrder.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Contact.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Contact.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Contact.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,48 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  Contact
+{
+
+protected java.lang.String name;
+
+protected java.lang.String phone;
+
+protected java.lang.String fax;
+
+protected java.lang.String email;
+public Contact(){}
+
+public Contact(java.lang.String name, java.lang.String phone, java.lang.String fax, java.lang.String email){
+this.name=name;
+this.phone=phone;
+this.fax=fax;
+this.email=email;
+}
+public java.lang.String getName() { return name ;}
+
+public void setName(java.lang.String name){ this.name=name; }
+
+public java.lang.String getPhone() { return phone ;}
+
+public void setPhone(java.lang.String phone){ this.phone=phone; }
+
+public java.lang.String getFax() { return fax ;}
+
+public void setFax(java.lang.String fax){ this.fax=fax; }
+
+public java.lang.String getEmail() { return email ;}
+
+public void setEmail(java.lang.String email){ this.email=email; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Contact.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CustomerOrder.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CustomerOrder.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CustomerOrder.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,34 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  CustomerOrder
+{
+
+protected com.activebpel.ordermanagement.OrderHeader header;
+
+protected com.activebpel.ordermanagement.Item[]  items;
+public CustomerOrder(){}
+
+public CustomerOrder(com.activebpel.ordermanagement.OrderHeader header, com.activebpel.ordermanagement.Item[] items){
+this.header=header;
+this.items=items;
+}
+public com.activebpel.ordermanagement.OrderHeader getHeader() { return header ;}
+
+public void setHeader(com.activebpel.ordermanagement.OrderHeader header){ this.header=header; }
+
+public com.activebpel.ordermanagement.Item[]  getItems() { return items ;}
+
+public void setItems(com.activebpel.ordermanagement.Item[] items){ this.items=items; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/CustomerOrder.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Item.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Item.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Item.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,55 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  Item
+{
+
+protected java.lang.String partNumber;
+
+protected java.lang.String description;
+
+protected int quantity;
+
+protected java.math.BigDecimal price;
+
+protected java.math.BigDecimal extensionAmount;
+public Item(){}
+
+public Item(java.lang.String partNumber, java.lang.String description, int quantity, java.math.BigDecimal price, java.math.BigDecimal extensionAmount){
+this.partNumber=partNumber;
+this.description=description;
+this.quantity=quantity;
+this.price=price;
+this.extensionAmount=extensionAmount;
+}
+public java.lang.String getPartNumber() { return partNumber ;}
+
+public void setPartNumber(java.lang.String partNumber){ this.partNumber=partNumber; }
+
+public java.lang.String getDescription() { return description ;}
+
+public void setDescription(java.lang.String description){ this.description=description; }
+
+public int getQuantity() { return quantity ;}
+
+public void setQuantity(int quantity){ this.quantity=quantity; }
+
+public java.math.BigDecimal getPrice() { return price ;}
+
+public void setPrice(java.math.BigDecimal price){ this.price=price; }
+
+public java.math.BigDecimal getExtensionAmount() { return extensionAmount ;}
+
+public void setExtensionAmount(java.math.BigDecimal extensionAmount){ this.extensionAmount=extensionAmount; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Item.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderHeader.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderHeader.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderHeader.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,76 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  OrderHeader
+{
+
+protected java.lang.String customerNumber;
+
+protected java.lang.String poNumber;
+
+protected java.util.Calendar orderDate;
+
+protected java.math.BigDecimal orderTotal;
+
+protected com.activebpel.ordermanagement.Party billTo;
+
+protected com.activebpel.ordermanagement.Party shipTo;
+
+protected java.lang.String billTerms;
+
+protected java.lang.String shipTerms;
+public OrderHeader(){}
+
+public OrderHeader(java.lang.String customerNumber, java.lang.String poNumber, java.util.Calendar orderDate, java.math.BigDecimal orderTotal, com.activebpel.ordermanagement.Party billTo, com.activebpel.ordermanagement.Party shipTo, java.lang.String billTerms, java.lang.String shipTerms){
+this.customerNumber=customerNumber;
+this.poNumber=poNumber;
+this.orderDate=orderDate;
+this.orderTotal=orderTotal;
+this.billTo=billTo;
+this.shipTo=shipTo;
+this.billTerms=billTerms;
+this.shipTerms=shipTerms;
+}
+public java.lang.String getCustomerNumber() { return customerNumber ;}
+
+public void setCustomerNumber(java.lang.String customerNumber){ this.customerNumber=customerNumber; }
+
+public java.lang.String getPoNumber() { return poNumber ;}
+
+public void setPoNumber(java.lang.String poNumber){ this.poNumber=poNumber; }
+
+public java.util.Calendar getOrderDate() { return orderDate ;}
+
+public void setOrderDate(java.util.Calendar orderDate){ this.orderDate=orderDate; }
+
+public java.math.BigDecimal getOrderTotal() { return orderTotal ;}
+
+public void setOrderTotal(java.math.BigDecimal orderTotal){ this.orderTotal=orderTotal; }
+
+public com.activebpel.ordermanagement.Party getBillTo() { return billTo ;}
+
+public void setBillTo(com.activebpel.ordermanagement.Party billTo){ this.billTo=billTo; }
+
+public com.activebpel.ordermanagement.Party getShipTo() { return shipTo ;}
+
+public void setShipTo(com.activebpel.ordermanagement.Party shipTo){ this.shipTo=shipTo; }
+
+public java.lang.String getBillTerms() { return billTerms ;}
+
+public void setBillTerms(java.lang.String billTerms){ this.billTerms=billTerms; }
+
+public java.lang.String getShipTerms() { return shipTerms ;}
+
+public void setShipTerms(java.lang.String shipTerms){ this.shipTerms=shipTerms; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderHeader.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderInquiry.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderInquiry.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderInquiry.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,34 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  OrderInquiry
+{
+
+protected java.lang.String customerNumber;
+
+protected java.lang.String poNumber;
+public OrderInquiry(){}
+
+public OrderInquiry(java.lang.String customerNumber, java.lang.String poNumber){
+this.customerNumber=customerNumber;
+this.poNumber=poNumber;
+}
+public java.lang.String getCustomerNumber() { return customerNumber ;}
+
+public void setCustomerNumber(java.lang.String customerNumber){ this.customerNumber=customerNumber; }
+
+public java.lang.String getPoNumber() { return poNumber ;}
+
+public void setPoNumber(java.lang.String poNumber){ this.poNumber=poNumber; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderInquiry.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderManager.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderManager.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderManager.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,16 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+package com.activebpel.ordermanagement;
+public interface  OrderManager extends java.rmi.Remote
+{
+
+  public java.lang.String  createSalesOrder(com.activebpel.ordermanagement.CustomerOrder customerOrder) throws com.activebpel.ordermanagement.SalesOrderFault, java.rmi.RemoteException;
+  public boolean  cancelOrder(com.activebpel.ordermanagement.CancelOrder cancelOrder) throws  java.rmi.RemoteException;
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/OrderManager.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Party.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Party.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Party.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,41 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  Party
+{
+
+protected java.lang.String company;
+
+protected com.activebpel.ordermanagement.Contact contact;
+
+protected com.activebpel.ordermanagement.Address address;
+public Party(){}
+
+public Party(java.lang.String company, com.activebpel.ordermanagement.Contact contact, com.activebpel.ordermanagement.Address address){
+this.company=company;
+this.contact=contact;
+this.address=address;
+}
+public java.lang.String getCompany() { return company ;}
+
+public void setCompany(java.lang.String company){ this.company=company; }
+
+public com.activebpel.ordermanagement.Contact getContact() { return contact ;}
+
+public void setContact(com.activebpel.ordermanagement.Contact contact){ this.contact=contact; }
+
+public com.activebpel.ordermanagement.Address getAddress() { return address ;}
+
+public void setAddress(com.activebpel.ordermanagement.Address address){ this.address=address; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/Party.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/RetailerCallback.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/RetailerCallback.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/RetailerCallback.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,15 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+package com.activebpel.ordermanagement;
+public interface  RetailerCallback extends java.rmi.Remote
+{
+
+  public boolean  sendSalesOrderNotification(com.activebpel.ordermanagement.SalesOrderNotification salesOrderNotification) throws  java.rmi.RemoteException;
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/RetailerCallback.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderFault.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderFault.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderFault.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,26 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  SalesOrderFault
+ extends Exception{
+
+private java.lang.String reason;
+public SalesOrderFault(java.lang.String reason){
+super(reason);
+this.reason=reason;
+}
+public java.lang.String getReason() { return reason ;}
+
+
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderFault.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderNotification.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderNotification.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderNotification.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:17 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.ordermanagement;
+
+
+public class  SalesOrderNotification
+{
+
+protected java.lang.String orderNumber;
+public SalesOrderNotification(){}
+
+public SalesOrderNotification(java.lang.String orderNumber){
+this.orderNumber=orderNumber;
+}
+public java.lang.String getOrderNumber() { return orderNumber ;}
+
+public void setOrderNumber(java.lang.String orderNumber){ this.orderNumber=orderNumber; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/ordermanagement/SalesOrderNotification.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/Shipping.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/Shipping.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/Shipping.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,15 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:18 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+package com.activebpel.shipping;
+public interface  Shipping extends java.rmi.Remote
+{
+
+  public com.activebpel.shipping.ShippingResponse  shipOrder(com.activebpel.shipping.ShippingRequest shippingRequest) throws  java.rmi.RemoteException;
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/Shipping.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingRequest.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingRequest.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingRequest.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,41 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:18 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.shipping;
+
+
+public class  ShippingRequest
+{
+
+protected java.lang.String customerNumber;
+
+protected java.lang.String poNumber;
+
+protected java.lang.String orderNumber;
+public ShippingRequest(){}
+
+public ShippingRequest(java.lang.String customerNumber, java.lang.String poNumber, java.lang.String orderNumber){
+this.customerNumber=customerNumber;
+this.poNumber=poNumber;
+this.orderNumber=orderNumber;
+}
+public java.lang.String getCustomerNumber() { return customerNumber ;}
+
+public void setCustomerNumber(java.lang.String customerNumber){ this.customerNumber=customerNumber; }
+
+public java.lang.String getPoNumber() { return poNumber ;}
+
+public void setPoNumber(java.lang.String poNumber){ this.poNumber=poNumber; }
+
+public java.lang.String getOrderNumber() { return orderNumber ;}
+
+public void setOrderNumber(java.lang.String orderNumber){ this.orderNumber=orderNumber; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingRequest.java
___________________________________________________________________
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingResponse.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingResponse.java	                        (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingResponse.java	2007-04-27 15:28:41 UTC (rev 11417)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Fri Apr 27 12:51:18 BST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package com.activebpel.shipping;
+
+
+public class  ShippingResponse
+{
+
+protected boolean orderShipped;
+public ShippingResponse(){}
+
+public ShippingResponse(boolean orderShipped){
+this.orderShipped=orderShipped;
+}
+public boolean isOrderShipped() { return orderShipped ;}
+
+public void setOrderShipped(boolean orderShipped){ this.orderShipped=orderShipped; }
+
+}


Property changes on: labs/jbossesb/trunk/product/samples/quickstarts/webservice_bpel/src/com/activebpel/shipping/ShippingResponse.java
___________________________________________________________________
Name: svn:eol-style
   + native




More information about the jboss-svn-commits mailing list