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 [13/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/integrationserver/properties/impl/ServerNameDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/integrationserver/properties/impl/ServerNameDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/integrationserver/properties/impl/ServerNameDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/integrationserver/properties/impl/ServerNameDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: ServerName
+ * Namespace: http://ws.apache.org/muse/example/integrationserver/properties
+ * Java type: org.apache.ws.muse.example.integrationserver.properties.ServerNameDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.integrationserver.properties.impl;
+/**
+ * A document containing one ServerName(@http://ws.apache.org/muse/example/integrationserver/properties) element.
+ *
+ * This is a complex type.
+ */
+public class ServerNameDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.integrationserver.properties.ServerNameDocument
+{
+    
+    public ServerNameDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName SERVERNAME$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/integrationserver/properties", "ServerName");
+    
+    
+    /**
+     * Gets the "ServerName" element
+     */
+    public java.lang.String getServerName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SERVERNAME$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "ServerName" element
+     */
+    public org.apache.xmlbeans.XmlString xgetServerName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SERVERNAME$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "ServerName" element
+     */
+    public void setServerName(java.lang.String serverName)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SERVERNAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SERVERNAME$0);
+            }
+            target.setStringValue(serverName);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "ServerName" element
+     */
+    public void xsetServerName(org.apache.xmlbeans.XmlString serverName)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SERVERNAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(SERVERNAME$0);
+            }
+            target.set(serverName);
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/ResourceAdminPropertiesDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/ResourceAdminPropertiesDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/ResourceAdminPropertiesDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/resourceadmin/ResourceAdminPropertiesDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,550 @@
+/*
+ * An XML document type.
+ * Localname: ResourceAdminProperties
+ * Namespace: http://ws.apache.org/muse/example/resourceadmin
+ * Java type: org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.resourceadmin;
+
+
+/**
+ * A document containing one ResourceAdminProperties(@http://ws.apache.org/muse/example/resourceadmin) element.
+ *
+ * This is a complex type.
+ */
+public interface ResourceAdminPropertiesDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("resourceadminproperties13eddoctype");
+    
+    /**
+     * Gets the "ResourceAdminProperties" element
+     */
+    org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument.ResourceAdminProperties getResourceAdminProperties();
+    
+    /**
+     * Sets the "ResourceAdminProperties" element
+     */
+    void setResourceAdminProperties(org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument.ResourceAdminProperties resourceAdminProperties);
+    
+    /**
+     * Appends and returns a new empty "ResourceAdminProperties" element
+     */
+    org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument.ResourceAdminProperties addNewResourceAdminProperties();
+    
+    /**
+     * An XML ResourceAdminProperties(@http://ws.apache.org/muse/example/resourceadmin).
+     *
+     * This is a complex type.
+     */
+    public interface ResourceAdminProperties extends org.apache.xmlbeans.XmlObject
+    {
+        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s8E37E7B70C00C5804C03B7296CCEC7DA.TypeSystemHolder.typeSystem.resolveHandle("resourceadminpropertiesd42delemtype");
+        
+        /**
+         * Gets array of all "Topic" elements
+         */
+        org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[] getTopicArray();
+        
+        /**
+         * Gets ith "Topic" element
+         */
+        org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType getTopicArray(int i);
+        
+        /**
+         * Returns number of "Topic" element
+         */
+        int sizeOfTopicArray();
+        
+        /**
+         * Sets array of all "Topic" element
+         */
+        void setTopicArray(org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[] topicArray);
+        
+        /**
+         * Sets ith "Topic" element
+         */
+        void setTopicArray(int i, org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType topic);
+        
+        /**
+         * Inserts and returns a new empty value (as xml) as the ith "Topic" element
+         */
+        org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType insertNewTopic(int i);
+        
+        /**
+         * Appends and returns a new empty value (as xml) as the last "Topic" element
+         */
+        org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType addNewTopic();
+        
+        /**
+         * Removes the ith "Topic" element
+         */
+        void removeTopic(int i);
+        
+        /**
+         * Gets the "FixedTopicSet" element
+         */
+        boolean getFixedTopicSet();
+        
+        /**
+         * Gets (as xml) the "FixedTopicSet" element
+         */
+        org.apache.xmlbeans.XmlBoolean xgetFixedTopicSet();
+        
+        /**
+         * Sets the "FixedTopicSet" element
+         */
+        void setFixedTopicSet(boolean fixedTopicSet);
+        
+        /**
+         * Sets (as xml) the "FixedTopicSet" element
+         */
+        void xsetFixedTopicSet(org.apache.xmlbeans.XmlBoolean fixedTopicSet);
+        
+        /**
+         * Gets array of all "TopicExpressionDialects" elements
+         */
+        java.lang.String[] getTopicExpressionDialectsArray();
+        
+        /**
+         * Gets ith "TopicExpressionDialects" element
+         */
+        java.lang.String getTopicExpressionDialectsArray(int i);
+        
+        /**
+         * Gets (as xml) array of all "TopicExpressionDialects" elements
+         */
+        org.apache.xmlbeans.XmlAnyURI[] xgetTopicExpressionDialectsArray();
+        
+        /**
+         * Gets (as xml) ith "TopicExpressionDialects" element
+         */
+        org.apache.xmlbeans.XmlAnyURI xgetTopicExpressionDialectsArray(int i);
+        
+        /**
+         * Returns number of "TopicExpressionDialects" element
+         */
+        int sizeOfTopicExpressionDialectsArray();
+        
+        /**
+         * Sets array of all "TopicExpressionDialects" element
+         */
+        void setTopicExpressionDialectsArray(java.lang.String[] topicExpressionDialectsArray);
+        
+        /**
+         * Sets ith "TopicExpressionDialects" element
+         */
+        void setTopicExpressionDialectsArray(int i, java.lang.String topicExpressionDialects);
+        
+        /**
+         * Sets (as xml) array of all "TopicExpressionDialects" element
+         */
+        void xsetTopicExpressionDialectsArray(org.apache.xmlbeans.XmlAnyURI[]topicExpressionDialectsArray);
+        
+        /**
+         * Sets (as xml) ith "TopicExpressionDialects" element
+         */
+        void xsetTopicExpressionDialectsArray(int i, org.apache.xmlbeans.XmlAnyURI topicExpressionDialects);
+        
+        /**
+         * Inserts the value as the ith "TopicExpressionDialects" element
+         */
+        void insertTopicExpressionDialects(int i, java.lang.String topicExpressionDialects);
+        
+        /**
+         * Appends the value as the last "TopicExpressionDialects" element
+         */
+        void addTopicExpressionDialects(java.lang.String topicExpressionDialects);
+        
+        /**
+         * Inserts and returns a new empty value (as xml) as the ith "TopicExpressionDialects" element
+         */
+        org.apache.xmlbeans.XmlAnyURI insertNewTopicExpressionDialects(int i);
+        
+        /**
+         * Appends and returns a new empty value (as xml) as the last "TopicExpressionDialects" element
+         */
+        org.apache.xmlbeans.XmlAnyURI addNewTopicExpressionDialects();
+        
+        /**
+         * Removes the ith "TopicExpressionDialects" element
+         */
+        void removeTopicExpressionDialects(int i);
+        
+        /**
+         * Gets the "ResourceId" element
+         */
+        java.lang.String getResourceId();
+        
+        /**
+         * Gets (as xml) the "ResourceId" element
+         */
+        org.apache.xmlbeans.XmlAnyURI xgetResourceId();
+        
+        /**
+         * Sets the "ResourceId" element
+         */
+        void setResourceId(java.lang.String resourceId);
+        
+        /**
+         * Sets (as xml) the "ResourceId" element
+         */
+        void xsetResourceId(org.apache.xmlbeans.XmlAnyURI resourceId);
+        
+        /**
+         * Gets array of all "ManageabilityCapability" elements
+         */
+        java.lang.String[] getManageabilityCapabilityArray();
+        
+        /**
+         * Gets ith "ManageabilityCapability" element
+         */
+        java.lang.String getManageabilityCapabilityArray(int i);
+        
+        /**
+         * Gets (as xml) array of all "ManageabilityCapability" elements
+         */
+        org.apache.xmlbeans.XmlAnyURI[] xgetManageabilityCapabilityArray();
+        
+        /**
+         * Gets (as xml) ith "ManageabilityCapability" element
+         */
+        org.apache.xmlbeans.XmlAnyURI xgetManageabilityCapabilityArray(int i);
+        
+        /**
+         * Returns number of "ManageabilityCapability" element
+         */
+        int sizeOfManageabilityCapabilityArray();
+        
+        /**
+         * Sets array of all "ManageabilityCapability" element
+         */
+        void setManageabilityCapabilityArray(java.lang.String[] manageabilityCapabilityArray);
+        
+        /**
+         * Sets ith "ManageabilityCapability" element
+         */
+        void setManageabilityCapabilityArray(int i, java.lang.String manageabilityCapability);
+        
+        /**
+         * Sets (as xml) array of all "ManageabilityCapability" element
+         */
+        void xsetManageabilityCapabilityArray(org.apache.xmlbeans.XmlAnyURI[]manageabilityCapabilityArray);
+        
+        /**
+         * Sets (as xml) ith "ManageabilityCapability" element
+         */
+        void xsetManageabilityCapabilityArray(int i, org.apache.xmlbeans.XmlAnyURI manageabilityCapability);
+        
+        /**
+         * Inserts the value as the ith "ManageabilityCapability" element
+         */
+        void insertManageabilityCapability(int i, java.lang.String manageabilityCapability);
+        
+        /**
+         * Appends the value as the last "ManageabilityCapability" element
+         */
+        void addManageabilityCapability(java.lang.String manageabilityCapability);
+        
+        /**
+         * Inserts and returns a new empty value (as xml) as the ith "ManageabilityCapability" element
+         */
+        org.apache.xmlbeans.XmlAnyURI insertNewManageabilityCapability(int i);
+        
+        /**
+         * Appends and returns a new empty value (as xml) as the last "ManageabilityCapability" element
+         */
+        org.apache.xmlbeans.XmlAnyURI addNewManageabilityCapability();
+        
+        /**
+         * Removes the ith "ManageabilityCapability" element
+         */
+        void removeManageabilityCapability(int i);
+        
+        /**
+         * Gets the "Caption" element
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString getCaption();
+        
+        /**
+         * Sets the "Caption" element
+         */
+        void setCaption(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString caption);
+        
+        /**
+         * Appends and returns a new empty "Caption" element
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString addNewCaption();
+        
+        /**
+         * Gets array of all "Description" elements
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString[] getDescriptionArray();
+        
+        /**
+         * Gets ith "Description" element
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString getDescriptionArray(int i);
+        
+        /**
+         * Returns number of "Description" element
+         */
+        int sizeOfDescriptionArray();
+        
+        /**
+         * Sets array of all "Description" element
+         */
+        void setDescriptionArray(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString[] descriptionArray);
+        
+        /**
+         * Sets ith "Description" element
+         */
+        void setDescriptionArray(int i, org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString description);
+        
+        /**
+         * Inserts and returns a new empty value (as xml) as the ith "Description" element
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString insertNewDescription(int i);
+        
+        /**
+         * Appends and returns a new empty value (as xml) as the last "Description" element
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString addNewDescription();
+        
+        /**
+         * Removes the ith "Description" element
+         */
+        void removeDescription(int i);
+        
+        /**
+         * Gets the "Version" element
+         */
+        java.lang.String getVersion();
+        
+        /**
+         * Gets (as xml) the "Version" element
+         */
+        org.apache.xmlbeans.XmlString xgetVersion();
+        
+        /**
+         * True if has "Version" element
+         */
+        boolean isSetVersion();
+        
+        /**
+         * Sets the "Version" element
+         */
+        void setVersion(java.lang.String version);
+        
+        /**
+         * Sets (as xml) the "Version" element
+         */
+        void xsetVersion(org.apache.xmlbeans.XmlString version);
+        
+        /**
+         * Unsets the "Version" element
+         */
+        void unsetVersion();
+        
+        /**
+         * Gets the "OperationalStatus" element
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus.Enum getOperationalStatus();
+        
+        /**
+         * Gets (as xml) the "OperationalStatus" element
+         */
+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus xgetOperationalStatus();
+        
+        /**
+         * Sets the "OperationalStatus" element
+         */
+        void setOperationalStatus(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus.Enum operationalStatus);
+        
+        /**
+         * Sets (as xml) the "OperationalStatus" element
+         */
+        void xsetOperationalStatus(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus operationalStatus);
+        
+        /**
+         * Gets the "CurrentTime" element
+         */
+        java.util.Calendar getCurrentTime();
+        
+        /**
+         * Gets (as xml) the "CurrentTime" element
+         */
+        org.apache.xmlbeans.XmlDateTime xgetCurrentTime();
+        
+        /**
+         * Sets the "CurrentTime" element
+         */
+        void setCurrentTime(java.util.Calendar currentTime);
+        
+        /**
+         * Sets (as xml) the "CurrentTime" element
+         */
+        void xsetCurrentTime(org.apache.xmlbeans.XmlDateTime currentTime);
+        
+        /**
+         * 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 "ResourceHostname" element
+         */
+        java.lang.String getResourceHostname();
+        
+        /**
+         * Gets (as xml) the "ResourceHostname" element
+         */
+        org.apache.xmlbeans.XmlString xgetResourceHostname();
+        
+        /**
+         * Sets the "ResourceHostname" element
+         */
+        void setResourceHostname(java.lang.String resourceHostname);
+        
+        /**
+         * Sets (as xml) the "ResourceHostname" element
+         */
+        void xsetResourceHostname(org.apache.xmlbeans.XmlString resourceHostname);
+        
+        /**
+         * 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();
+        
+        /**
+         * Gets the "Discovery" element
+         */
+        org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType getDiscovery();
+        
+        /**
+         * Sets the "Discovery" element
+         */
+        void setDiscovery(org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType discovery);
+        
+        /**
+         * Appends and returns a new empty "Discovery" element
+         */
+        org.apache.ws.muse.example.resourceadmin.properties.DiscoveryType addNewDiscovery();
+        
+        /**
+         * 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.ResourceAdminPropertiesDocument.ResourceAdminProperties newInstance() {
+              return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument.ResourceAdminProperties) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+            
+            public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument.ResourceAdminProperties newInstance(org.apache.xmlbeans.XmlOptions options) {
+              return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument.ResourceAdminProperties) 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.ResourceAdminPropertiesDocument newInstance() {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) 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.ResourceAdminPropertiesDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument 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.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument 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.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument 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.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument 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.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument 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.ResourceAdminPropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.resourceadmin.ResourceAdminPropertiesDocument 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.ResourceAdminPropertiesDocument) 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