From 6c7ad7c110656f47273dc23228b41e46023492f3 Mon Sep 17 00:00:00 2001 From: antelder Date: Sat, 18 Apr 2009 07:36:53 +0000 Subject: Create 1.5 branch git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@766260 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/example/orderservice/ObjectFactory.java | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 branches/sca-java-1.5/samples/holder-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java (limited to 'branches/sca-java-1.5/samples/holder-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java') diff --git a/branches/sca-java-1.5/samples/holder-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java b/branches/sca-java-1.5/samples/holder-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java new file mode 100644 index 0000000000..e472b2bada --- /dev/null +++ b/branches/sca-java-1.5/samples/holder-ws-service/src/main/java/org/example/orderservice/ObjectFactory.java @@ -0,0 +1,56 @@ + +package org.example.orderservice; + +import javax.xml.bind.annotation.XmlRegistry; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.example.orderservice package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.example.orderservice + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link ReviewOrderResponse } + * + */ + public ReviewOrderResponse createReviewOrderResponse() { + return new ReviewOrderResponse(); + } + + /** + * Create an instance of {@link Order } + * + */ + public Order createOrder() { + return new Order(); + } + + /** + * Create an instance of {@link ReviewOrder } + * + */ + public ReviewOrder createReviewOrder() { + return new ReviewOrder(); + } + +} -- cgit v1.2.3