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 ki...@apache.org on 2005/06/20 20:51:29 UTC

svn commit: r191534 [18/29] - in /incubator/muse/trunk/src/site/content/example: ./ epr/ images/ lib/ logic/ logic/src/ logic/src/java/ logic/src/java/org/ logic/src/java/org/apache/ logic/src/java/org/apache/ws/ logic/src/java/org/apache/ws/muse/ logi...

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/SupportedResourcesDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/SupportedResourcesDocument.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/SupportedResourcesDocument.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/SupportedResourcesDocument.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: SupportedResources
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties;
+
+
+/**
+ * A document containing one SupportedResources(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface SupportedResourcesDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("supportedresourcesbd40doctype");
+    
+    /**
+     * Gets the "SupportedResources" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.SupportedResourceType getSupportedResources();
+    
+    /**
+     * Sets the "SupportedResources" element
+     */
+    void setSupportedResources(org.apache.ws.muse.example.resourceadmin.properties.SupportedResourceType supportedResources);
+    
+    /**
+     * Appends and returns a new empty "SupportedResources" element
+     */
+    org.apache.ws.muse.example.resourceadmin.properties.SupportedResourceType addNewSupportedResources();
+    
+    /**
+     * 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.SupportedResourcesDocument newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) 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.SupportedResourcesDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument 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.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument 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.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument 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.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument 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.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument 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.SupportedResourcesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.properties.SupportedResourcesDocument 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.SupportedResourcesDocument) 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/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,143 @@
+/*
+ * An XML document type.
+ * Localname: Create
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.CreateDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * A document containing one Create(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class CreateDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateDocument
+{
+    
+    public CreateDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName CREATE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "Create");
+    
+    
+    /**
+     * Gets the "Create" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create getCreate()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create)get_store().find_element_user(CREATE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Create" element
+     */
+    public void setCreate(org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create create)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create)get_store().find_element_user(CREATE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create)get_store().add_element_user(CREATE$0);
+            }
+            target.set(create);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "Create" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create addNewCreate()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create)get_store().add_element_user(CREATE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML Create(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public static class CreateImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateDocument.Create
+    {
+        
+        public CreateImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        private static final javax.xml.namespace.QName CREATEPARAMS$0 = 
+            new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "CreateParams");
+        
+        
+        /**
+         * Gets the "CreateParams" element
+         */
+        public org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType getCreateParams()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType target = null;
+                target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().find_element_user(CREATEPARAMS$0, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "CreateParams" element
+         */
+        public void setCreateParams(org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType createParams)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType target = null;
+                target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().find_element_user(CREATEPARAMS$0, 0);
+                if (target == null)
+                {
+                    target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().add_element_user(CREATEPARAMS$0);
+                }
+                target.set(createParams);
+            }
+        }
+        
+        /**
+         * Appends and returns a new empty "CreateParams" element
+         */
+        public org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType addNewCreateParams()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType target = null;
+                target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().add_element_user(CREATEPARAMS$0);
+                return target;
+            }
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateFaultDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateFaultDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateFaultDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateFaultDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: CreateFault
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * A document containing one CreateFault(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class CreateFaultDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument
+{
+    
+    public CreateFaultDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName CREATEFAULT$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "CreateFault");
+    
+    
+    /**
+     * Gets the "CreateFault" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault getCreateFault()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault)get_store().find_element_user(CREATEFAULT$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "CreateFault" element
+     */
+    public void setCreateFault(org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault createFault)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault)get_store().find_element_user(CREATEFAULT$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault)get_store().add_element_user(CREATEFAULT$0);
+            }
+            target.set(createFault);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "CreateFault" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault addNewCreateFault()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault)get_store().add_element_user(CREATEFAULT$0);
+            return target;
+        }
+    }
+    /**
+     * An XML CreateFault(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public static class CreateFaultImpl extends org.oasisOpen.docs.wsrf.x2004.x06.wsrfWSBaseFaults12Draft01.impl.BaseFaultTypeImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateFaultDocument.CreateFault
+    {
+        
+        public CreateFaultImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,76 @@
+/*
+ * 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.impl;
+/**
+ * A document containing one CreateParams(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class CreateParamsDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateParamsDocument
+{
+    
+    public CreateParamsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName CREATEPARAMS$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "CreateParams");
+    
+    
+    /**
+     * Gets the "CreateParams" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType getCreateParams()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().find_element_user(CREATEPARAMS$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "CreateParams" element
+     */
+    public void setCreateParams(org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType createParams)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().find_element_user(CREATEPARAMS$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().add_element_user(CREATEPARAMS$0);
+            }
+            target.set(createParams);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "CreateParams" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType addNewCreateParams()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType)get_store().add_element_user(CREATEPARAMS$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsTypeImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsTypeImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsTypeImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateParamsTypeImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,93 @@
+/*
+ * 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.impl;
+/**
+ * An XML CreateParamsType(@http://ws.apache.org/muse/example/resourceadmin/properties).
+ *
+ * This is a complex type.
+ */
+public class CreateParamsTypeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateParamsType
+{
+    
+    public CreateParamsTypeImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RESOURCETYPE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/namespaces/muse/muws-ext-1.xsd", "ResourceType");
+    
+    
+    /**
+     * Gets the "ResourceType" element
+     */
+    public java.lang.String getResourceType()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCETYPE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "ResourceType" element
+     */
+    public org.apache.xmlbeans.XmlAnyURI xgetResourceType()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlAnyURI target = null;
+            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCETYPE$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "ResourceType" element
+     */
+    public void setResourceType(java.lang.String resourceType)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCETYPE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESOURCETYPE$0);
+            }
+            target.setStringValue(resourceType);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "ResourceType" element
+     */
+    public void xsetResourceType(org.apache.xmlbeans.XmlAnyURI resourceType)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlAnyURI target = null;
+            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCETYPE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(RESOURCETYPE$0);
+            }
+            target.set(resourceType);
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateResponseDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateResponseDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/CreateResponseDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,143 @@
+/*
+ * 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.impl;
+/**
+ * A document containing one CreateResponse(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class CreateResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument
+{
+    
+    public CreateResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName CREATERESPONSE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "CreateResponse");
+    
+    
+    /**
+     * Gets the "CreateResponse" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse getCreateResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse)get_store().find_element_user(CREATERESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "CreateResponse" element
+     */
+    public void setCreateResponse(org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse createResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse)get_store().find_element_user(CREATERESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse)get_store().add_element_user(CREATERESPONSE$0);
+            }
+            target.set(createResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "CreateResponse" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse addNewCreateResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse)get_store().add_element_user(CREATERESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML CreateResponse(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public static class CreateResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.CreateResponseDocument.CreateResponse
+    {
+        
+        public CreateResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        private static final javax.xml.namespace.QName ENDPOINTREFERENCE$0 = 
+            new javax.xml.namespace.QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "EndpointReference");
+        
+        
+        /**
+         * Gets the "EndpointReference" element
+         */
+        public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType getEndpointReference()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+                target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$0, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "EndpointReference" element
+         */
+        public void setEndpointReference(org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType endpointReference)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+                target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$0, 0);
+                if (target == null)
+                {
+                    target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().add_element_user(ENDPOINTREFERENCE$0);
+                }
+                target.set(endpointReference);
+            }
+        }
+        
+        /**
+         * Appends and returns a new empty "EndpointReference" element
+         */
+        public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType addNewEndpointReference()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+                target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().add_element_user(ENDPOINTREFERENCE$0);
+                return target;
+            }
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,143 @@
+/*
+ * 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.impl;
+/**
+ * A document containing one DestroyResource(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class DestroyResourceDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument
+{
+    
+    public DestroyResourceDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName DESTROYRESOURCE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "DestroyResource");
+    
+    
+    /**
+     * Gets the "DestroyResource" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource getDestroyResource()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource)get_store().find_element_user(DESTROYRESOURCE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "DestroyResource" element
+     */
+    public void setDestroyResource(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource destroyResource)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource)get_store().find_element_user(DESTROYRESOURCE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource)get_store().add_element_user(DESTROYRESOURCE$0);
+            }
+            target.set(destroyResource);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "DestroyResource" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource addNewDestroyResource()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource)get_store().add_element_user(DESTROYRESOURCE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML DestroyResource(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public static class DestroyResourceImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceDocument.DestroyResource
+    {
+        
+        public DestroyResourceImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        private static final javax.xml.namespace.QName DESTROYRESOURCEPARAMS$0 = 
+            new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "DestroyResourceParams");
+        
+        
+        /**
+         * Gets the "DestroyResourceParams" element
+         */
+        public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType getDestroyResourceParams()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType target = null;
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().find_element_user(DESTROYRESOURCEPARAMS$0, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "DestroyResourceParams" element
+         */
+        public void setDestroyResourceParams(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType destroyResourceParams)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType target = null;
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().find_element_user(DESTROYRESOURCEPARAMS$0, 0);
+                if (target == null)
+                {
+                    target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().add_element_user(DESTROYRESOURCEPARAMS$0);
+                }
+                target.set(destroyResourceParams);
+            }
+        }
+        
+        /**
+         * Appends and returns a new empty "DestroyResourceParams" element
+         */
+        public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType addNewDestroyResourceParams()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType target = null;
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().add_element_user(DESTROYRESOURCEPARAMS$0);
+                return target;
+            }
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceFaultDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceFaultDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceFaultDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceFaultDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,91 @@
+/*
+ * 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.impl;
+/**
+ * A document containing one DestroyResourceFault(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class DestroyResourceFaultDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument
+{
+    
+    public DestroyResourceFaultDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName DESTROYRESOURCEFAULT$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "DestroyResourceFault");
+    
+    
+    /**
+     * Gets the "DestroyResourceFault" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault getDestroyResourceFault()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault)get_store().find_element_user(DESTROYRESOURCEFAULT$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "DestroyResourceFault" element
+     */
+    public void setDestroyResourceFault(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault destroyResourceFault)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault)get_store().find_element_user(DESTROYRESOURCEFAULT$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault)get_store().add_element_user(DESTROYRESOURCEFAULT$0);
+            }
+            target.set(destroyResourceFault);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "DestroyResourceFault" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault addNewDestroyResourceFault()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault)get_store().add_element_user(DESTROYRESOURCEFAULT$0);
+            return target;
+        }
+    }
+    /**
+     * An XML DestroyResourceFault(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public static class DestroyResourceFaultImpl extends org.oasisOpen.docs.wsrf.x2004.x06.wsrfWSBaseFaults12Draft01.impl.BaseFaultTypeImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceFaultDocument.DestroyResourceFault
+    {
+        
+        public DestroyResourceFaultImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,76 @@
+/*
+ * 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.impl;
+/**
+ * A document containing one DestroyResourceParams(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class DestroyResourceParamsDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsDocument
+{
+    
+    public DestroyResourceParamsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName DESTROYRESOURCEPARAMS$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "DestroyResourceParams");
+    
+    
+    /**
+     * Gets the "DestroyResourceParams" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType getDestroyResourceParams()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().find_element_user(DESTROYRESOURCEPARAMS$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "DestroyResourceParams" element
+     */
+    public void setDestroyResourceParams(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType destroyResourceParams)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().find_element_user(DESTROYRESOURCEPARAMS$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().add_element_user(DESTROYRESOURCEPARAMS$0);
+            }
+            target.set(destroyResourceParams);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "DestroyResourceParams" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType addNewDestroyResourceParams()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType)get_store().add_element_user(DESTROYRESOURCEPARAMS$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsTypeImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsTypeImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsTypeImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceParamsTypeImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,145 @@
+/*
+ * 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.impl;
+/**
+ * An XML DestroyResourceParamsType(@http://ws.apache.org/muse/example/resourceadmin/properties).
+ *
+ * This is a complex type.
+ */
+public class DestroyResourceParamsTypeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceParamsType
+{
+    
+    public DestroyResourceParamsTypeImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RESOURCETYPE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/namespaces/muse/muws-ext-1.xsd", "ResourceType");
+    private static final javax.xml.namespace.QName ENDPOINTREFERENCE$2 = 
+        new javax.xml.namespace.QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "EndpointReference");
+    
+    
+    /**
+     * Gets the "ResourceType" element
+     */
+    public java.lang.String getResourceType()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCETYPE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "ResourceType" element
+     */
+    public org.apache.xmlbeans.XmlAnyURI xgetResourceType()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlAnyURI target = null;
+            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCETYPE$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "ResourceType" element
+     */
+    public void setResourceType(java.lang.String resourceType)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCETYPE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESOURCETYPE$0);
+            }
+            target.setStringValue(resourceType);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "ResourceType" element
+     */
+    public void xsetResourceType(org.apache.xmlbeans.XmlAnyURI resourceType)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlAnyURI target = null;
+            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCETYPE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(RESOURCETYPE$0);
+            }
+            target.set(resourceType);
+        }
+    }
+    
+    /**
+     * Gets the "EndpointReference" element
+     */
+    public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType getEndpointReference()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+            target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$2, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "EndpointReference" element
+     */
+    public void setEndpointReference(org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType endpointReference)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+            target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$2, 0);
+            if (target == null)
+            {
+                target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().add_element_user(ENDPOINTREFERENCE$2);
+            }
+            target.set(endpointReference);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "EndpointReference" element
+     */
+    public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType addNewEndpointReference()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+            target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().add_element_user(ENDPOINTREFERENCE$2);
+            return target;
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceResponseDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceResponseDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DestroyResourceResponseDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: DestroyResourceResponse
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * A document containing one DestroyResourceResponse(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class DestroyResourceResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument
+{
+    
+    public DestroyResourceResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName DESTROYRESOURCERESPONSE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "DestroyResourceResponse");
+    
+    
+    /**
+     * Gets the "DestroyResourceResponse" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse getDestroyResourceResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse)get_store().find_element_user(DESTROYRESOURCERESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "DestroyResourceResponse" element
+     */
+    public void setDestroyResourceResponse(org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse destroyResourceResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse)get_store().find_element_user(DESTROYRESOURCERESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse)get_store().add_element_user(DESTROYRESOURCERESPONSE$0);
+            }
+            target.set(destroyResourceResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "DestroyResourceResponse" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse addNewDestroyResourceResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse)get_store().add_element_user(DESTROYRESOURCERESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML DestroyResourceResponse(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public static class DestroyResourceResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DestroyResourceResponseDocument.DestroyResourceResponse
+    {
+        
+        public DestroyResourceResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: Discovery
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.DiscoveryDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * A document containing one Discovery(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class DiscoveryDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DiscoveryDocument
+{
+    
+    public DiscoveryDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName DISCOVERY$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "Discovery");
+    
+    
+    /**
+     * Gets the "Discovery" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType getDiscovery()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType)get_store().find_element_user(DISCOVERY$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Discovery" element
+     */
+    public void setDiscovery(org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType discovery)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType)get_store().find_element_user(DISCOVERY$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType)get_store().add_element_user(DISCOVERY$0);
+            }
+            target.set(discovery);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "Discovery" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType addNewDiscovery()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType)get_store().add_element_user(DISCOVERY$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryTypeImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryTypeImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryTypeImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/DiscoveryTypeImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,141 @@
+/*
+ * XML Type:  DiscoveryType
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * An XML DiscoveryType(@http://ws.apache.org/muse/example/resourceadmin/properties).
+ *
+ * This is a complex type.
+ */
+public class DiscoveryTypeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType
+{
+    
+    public DiscoveryTypeImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName ENDPOINTREFERENCE$0 = 
+        new javax.xml.namespace.QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "EndpointReference");
+    
+    
+    /**
+     * Gets array of all "EndpointReference" elements
+     */
+    public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType[] getEndpointReferenceArray()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            java.util.List targetList = new java.util.ArrayList();
+            get_store().find_all_element_users(ENDPOINTREFERENCE$0, targetList);
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType[] result = new org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType[targetList.size()];
+            targetList.toArray(result);
+            return result;
+        }
+    }
+    
+    /**
+     * Gets ith "EndpointReference" element
+     */
+    public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType getEndpointReferenceArray(int i)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+            target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$0, i);
+            if (target == null)
+            {
+                throw new IndexOutOfBoundsException();
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Returns number of "EndpointReference" element
+     */
+    public int sizeOfEndpointReferenceArray()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            return get_store().count_elements(ENDPOINTREFERENCE$0);
+        }
+    }
+    
+    /**
+     * Sets array of all "EndpointReference" element
+     */
+    public void setEndpointReferenceArray(org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType[] endpointReferenceArray)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            arraySetterHelper(endpointReferenceArray, ENDPOINTREFERENCE$0);
+        }
+    }
+    
+    /**
+     * Sets ith "EndpointReference" element
+     */
+    public void setEndpointReferenceArray(int i, org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType endpointReference)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+            target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$0, i);
+            if (target == null)
+            {
+                throw new IndexOutOfBoundsException();
+            }
+            target.set(endpointReference);
+        }
+    }
+    
+    /**
+     * Inserts and returns a new empty value (as xml) as the ith "EndpointReference" element
+     */
+    public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType insertNewEndpointReference(int i)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+            target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().insert_element_user(ENDPOINTREFERENCE$0, i);
+            return target;
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty value (as xml) as the last "EndpointReference" element
+     */
+    public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType addNewEndpointReference()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+            target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().add_element_user(ENDPOINTREFERENCE$0);
+            return target;
+        }
+    }
+    
+    /**
+     * Removes the ith "EndpointReference" element
+     */
+    public void removeEndpointReference(int i)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            get_store().remove_element(ENDPOINTREFERENCE$0, i);
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/InvalidResourcePropertiesDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/InvalidResourcePropertiesDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/InvalidResourcePropertiesDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/InvalidResourcePropertiesDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: InvalidResourceProperties
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * A document containing one InvalidResourceProperties(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class InvalidResourcePropertiesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument
+{
+    
+    public InvalidResourcePropertiesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName INVALIDRESOURCEPROPERTIES$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "InvalidResourceProperties");
+    
+    
+    /**
+     * Gets the "InvalidResourceProperties" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties getInvalidResourceProperties()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties)get_store().find_element_user(INVALIDRESOURCEPROPERTIES$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "InvalidResourceProperties" element
+     */
+    public void setInvalidResourceProperties(org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties invalidResourceProperties)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties)get_store().find_element_user(INVALIDRESOURCEPROPERTIES$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties)get_store().add_element_user(INVALIDRESOURCEPROPERTIES$0);
+            }
+            target.set(invalidResourceProperties);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "InvalidResourceProperties" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties addNewInvalidResourceProperties()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties)get_store().add_element_user(INVALIDRESOURCEPROPERTIES$0);
+            return target;
+        }
+    }
+    /**
+     * An XML InvalidResourceProperties(@http://ws.apache.org/muse/example/resourceadmin/properties).
+     *
+     * This is a complex type.
+     */
+    public static class InvalidResourcePropertiesImpl extends org.oasisOpen.docs.wsrf.x2004.x06.wsrfWSBaseFaults12Draft01.impl.BaseFaultTypeImpl implements org.apache.ws.muse.example.resourceadmin.properties.InvalidResourcePropertiesDocument.InvalidResourceProperties
+    {
+        
+        public InvalidResourcePropertiesImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromDocumentImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromDocumentImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: RelationshipFrom
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * A document containing one RelationshipFrom(@http://ws.apache.org/muse/example/resourceadmin/properties) element.
+ *
+ * This is a complex type.
+ */
+public class RelationshipFromDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromDocument
+{
+    
+    public RelationshipFromDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RELATIONSHIPFROM$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/resourceadmin/properties", "RelationshipFrom");
+    
+    
+    /**
+     * Gets the "RelationshipFrom" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType getRelationshipFrom()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType)get_store().find_element_user(RELATIONSHIPFROM$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "RelationshipFrom" element
+     */
+    public void setRelationshipFrom(org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType relationshipFrom)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType)get_store().find_element_user(RELATIONSHIPFROM$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType)get_store().add_element_user(RELATIONSHIPFROM$0);
+            }
+            target.set(relationshipFrom);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "RelationshipFrom" element
+     */
+    public org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType addNewRelationshipFrom()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType target = null;
+            target = (org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType)get_store().add_element_user(RELATIONSHIPFROM$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromTypeImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromTypeImpl.java?rev=191534&view=auto
==============================================================================
--- incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromTypeImpl.java (added)
+++ incubator/muse/trunk/src/site/content/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/properties/impl/RelationshipFromTypeImpl.java Mon Jun 20 11:51:17 2005
@@ -0,0 +1,75 @@
+/*
+ * XML Type:  RelationshipFromType
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin/properties
+ * Java type: org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin.properties.impl;
+/**
+ * An XML RelationshipFromType(@http://ws.apache.org/muse/example/resourceadmin/properties).
+ *
+ * This is a complex type.
+ */
+public class RelationshipFromTypeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.resourceadmin.properties.RelationshipFromType
+{
+    
+    public RelationshipFromTypeImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName PARTICIPANT$0 = 
+        new javax.xml.namespace.QName("http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd", "Participant");
+    
+    
+    /**
+     * Gets the "Participant" element
+     */
+    public org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType getParticipant()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType target = null;
+            target = (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType)get_store().find_element_user(PARTICIPANT$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Participant" element
+     */
+    public void setParticipant(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType participant)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType target = null;
+            target = (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType)get_store().find_element_user(PARTICIPANT$0, 0);
+            if (target == null)
+            {
+                target = (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType)get_store().add_element_user(PARTICIPANT$0);
+            }
+            target.set(participant);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "Participant" element
+     */
+    public org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType addNewParticipant()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType target = null;
+            target = (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipParticipantType)get_store().add_element_user(PARTICIPANT$0);
+            return target;
+        }
+    }
+}



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