You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-dev@ws.apache.org by ip...@apache.org on 2005/06/21 01:28:44 UTC

svn commit: r191585 [15/30] - in /incubator/muse/site: ./ dev_guide/ example/ example/epr/ example/images/ example/lib/ example/logic/ example/logic/src/ example/logic/src/java/ example/logic/src/java/org/ example/logic/src/java/org/apache/ example/log...

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: CreateParams
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * A document containing one CreateParams(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface CreateParamsDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("createparams8f15doctype");
+    
+    /**
+     * Gets the "CreateParams" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType getCreateParams();
+    
+    /**
+     * Sets the "CreateParams" element
+     */
+    void setCreateParams(org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType createParams);
+    
+    /**
+     * Appends and returns a new empty "CreateParams" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType addNewCreateParams();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsType.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsType.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsType.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateParamsType.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,113 @@
+/*
+ * XML Type:  CreateParamsType
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * An XML CreateParamsType(@http://ws.apache.org/muse/example/resourceadmin/properties).
+ *
+ * This is a complex type.
+ */
+public interface CreateParamsType extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("createparamstype590btype");
+    
+    /**
+     * Gets the "ResourceType" element
+     */
+    java.lang.String getResourceType();
+    
+    /**
+     * Gets (as xml) the "ResourceType" element
+     */
+    org.apache.xmlbeans.XmlAnyURI xgetResourceType();
+    
+    /**
+     * Sets the "ResourceType" element
+     */
+    void setResourceType(java.lang.String resourceType);
+    
+    /**
+     * Sets (as xml) the "ResourceType" element
+     */
+    void xsetResourceType(org.apache.xmlbeans.XmlAnyURI resourceType);
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateResponseDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateResponseDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateResponseDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/CreateResponseDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,150 @@
+/*
+ * An XML document type.
+ * Localname: CreateResponse
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * A document containing one CreateResponse(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface CreateResponseDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("createresponse84badoctype");
+    
+    /**
+     * Gets the "CreateResponse" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse getCreateResponse();
+    
+    /**
+     * Sets the "CreateResponse" element
+     */
+    void setCreateResponse(org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse createResponse);
+    
+    /**
+     * Appends and returns a new empty "CreateResponse" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse addNewCreateResponse();
+    
+    /**
+     * An XML CreateResponse(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public interface CreateResponse extends org.apache.xmlbeans.XmlObject
+    {
+        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("createresponse2753elemtype");
+        
+        /**
+         * Gets the "EndpointReference" element
+         */
+        org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType getEndpointReference();
+        
+        /**
+         * Sets the "EndpointReference" element
+         */
+        void setEndpointReference(org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType endpointReference);
+        
+        /**
+         * Appends and returns a new empty "EndpointReference" element
+         */
+        org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType addNewEndpointReference();
+        
+        /**
+         * A factory class with static methods for creating instances
+         * of this type.
+         */
+        
+        public static final class Factory
+        {
+            public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse newInstance() {
+              return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+            
+            public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse newInstance(org.apache.xmlbeans.XmlOptions options) {
+              return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+            
+            private Factory() { } // No instance of this class allowed
+        }
+    }
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,150 @@
+/*
+ * An XML document type.
+ * Localname: DestroyResource
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * A document containing one DestroyResource(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface DestroyResourceDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("destroyresource3ae1doctype");
+    
+    /**
+     * Gets the "DestroyResource" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource getDestroyResource();
+    
+    /**
+     * Sets the "DestroyResource" element
+     */
+    void setDestroyResource(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource destroyResource);
+    
+    /**
+     * Appends and returns a new empty "DestroyResource" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource addNewDestroyResource();
+    
+    /**
+     * An XML DestroyResource(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public interface DestroyResource extends org.apache.xmlbeans.XmlObject
+    {
+        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("destroyresourcedcedelemtype");
+        
+        /**
+         * Gets the "DestroyResourceParams" element
+         */
+        org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType getDestroyResourceParams();
+        
+        /**
+         * Sets the "DestroyResourceParams" element
+         */
+        void setDestroyResourceParams(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType destroyResourceParams);
+        
+        /**
+         * Appends and returns a new empty "DestroyResourceParams" element
+         */
+        org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType addNewDestroyResourceParams();
+        
+        /**
+         * A factory class with static methods for creating instances
+         * of this type.
+         */
+        
+        public static final class Factory
+        {
+            public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource newInstance() {
+              return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+            
+            public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource newInstance(org.apache.xmlbeans.XmlOptions options) {
+              return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+            
+            private Factory() { } // No instance of this class allowed
+        }
+    }
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceFaultDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceFaultDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceFaultDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceFaultDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,135 @@
+/*
+ * An XML document type.
+ * Localname: DestroyResourceFault
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * A document containing one DestroyResourceFault(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface DestroyResourceFaultDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("destroyresourcefault19dddoctype");
+    
+    /**
+     * Gets the "DestroyResourceFault" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault getDestroyResourceFault();
+    
+    /**
+     * Sets the "DestroyResourceFault" element
+     */
+    void setDestroyResourceFault(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault destroyResourceFault);
+    
+    /**
+     * Appends and returns a new empty "DestroyResourceFault" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault addNewDestroyResourceFault();
+    
+    /**
+     * An XML DestroyResourceFault(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public interface DestroyResourceFault extends org.oasisOpen.docs.wsrf.x2004.x06.wsrfWSBaseFaults12Draft01.BaseFaultType
+    {
+        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("destroyresourcefault25f3elemtype");
+        
+        /**
+         * A factory class with static methods for creating instances
+         * of this type.
+         */
+        
+        public static final class Factory
+        {
+            public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault newInstance() {
+              return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+            
+            public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault newInstance(org.apache.xmlbeans.XmlOptions options) {
+              return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+            
+            private Factory() { } // No instance of this class allowed
+        }
+    }
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: DestroyResourceParams
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * A document containing one DestroyResourceParams(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface DestroyResourceParamsDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("destroyresourceparamsecbbdoctype");
+    
+    /**
+     * Gets the "DestroyResourceParams" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType getDestroyResourceParams();
+    
+    /**
+     * Sets the "DestroyResourceParams" element
+     */
+    void setDestroyResourceParams(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType destroyResourceParams);
+    
+    /**
+     * Appends and returns a new empty "DestroyResourceParams" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType addNewDestroyResourceParams();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsType.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsType.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsType.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/DestroyResourceParamsType.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,128 @@
+/*
+ * XML Type:  DestroyResourceParamsType
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * An XML DestroyResourceParamsType(@http://ws.apache.org/muse/example/resourceadmin/properties).
+ *
+ * This is a complex type.
+ */
+public interface DestroyResourceParamsType extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("destroyresourceparamstypeb591type");
+    
+    /**
+     * Gets the "ResourceType" element
+     */
+    java.lang.String getResourceType();
+    
+    /**
+     * Gets (as xml) the "ResourceType" element
+     */
+    org.apache.xmlbeans.XmlAnyURI xgetResourceType();
+    
+    /**
+     * Sets the "ResourceType" element
+     */
+    void setResourceType(java.lang.String resourceType);
+    
+    /**
+     * Sets (as xml) the "ResourceType" element
+     */
+    void xsetResourceType(org.apache.xmlbeans.XmlAnyURI resourceType);
+    
+    /**
+     * Gets the "EndpointReference" element
+     */
+    org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType getEndpointReference();
+    
+    /**
+     * Sets the "EndpointReference" element
+     */
+    void setEndpointReference(org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType endpointReference);
+    
+    /**
+     * Appends and returns a new empty "EndpointReference" element
+     */
+    org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType addNewEndpointReference();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org