diff WebServiceExtensionsV1.1/WebServiceToolWorkflow_REST_SOAP/lib/SAWADLParser/src/javax/wadls/Include.java @ 0:049760c677de default tip

Galaxy WSExtensions added successfully
author uga-galaxy-group
date Tue, 05 Jul 2011 19:34:18 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebServiceExtensionsV1.1/WebServiceToolWorkflow_REST_SOAP/lib/SAWADLParser/src/javax/wadls/Include.java	Tue Jul 05 19:34:18 2011 -0400
@@ -0,0 +1,78 @@
+/*
+ * (c) Copyright IBM Corp 2001, 2005 
+ */
+
+package javax.wadls;
+
+import org.w3c.dom.*;
+
+
+
+/**
+ * This interface represents an import, and may contain a reference
+ * to the imported definition.
+ *
+ * @author Matthew J. Duftler (duftler@us.ibm.com)
+ */
+public interface Include extends java.io.Serializable
+{
+  /**
+   * Set the namespace URI of this import.
+   *
+   * @param namespaceURI the desired namespace URI
+   */
+  public void setNamespaceURI(String namespaceURI);
+
+  /**
+   * Get the namespace URI of this import.
+   */
+  public String getNamespaceURI();
+
+  /**
+   * Set the location URI of this import.
+   *
+   * @param locationURI the desired location URI
+   */
+  public void setLocationURI(String locationURI);
+
+  /**
+   * Get the location URI of this import.
+   */
+  public String getLocationURI();
+
+  /**
+   * This property can be used to hang a referenced Definition,
+   * and the top-level Definition (i.e. the one with the <import>)
+   * will use this Definition when resolving referenced WSDL parts.
+   * This would need to be made into a generic reference to handle
+   * other types of referenced documents.
+   */
+  public void setApplication(Application app);
+
+  /**
+   * This property can be used to hang a referenced Definition,
+   * and the top-level Definition (i.e. the one with the <import>)
+   * will use this Definition when resolving referenced WSDL parts.
+   * This would need to be made into a generic reference to handle
+   * other types of referenced documents.
+   */
+  public Application getApplication();
+
+  /**
+   * Set the documentation element for this document. This dependency
+   * on org.w3c.dom.Element should eventually be removed when a more
+   * appropriate way of representing this information is employed.
+   *
+   * @param docEl the documentation element
+   */
+  public void setDocumentationElement(Element docEl);
+
+  /**
+   * Get the documentation element. This dependency on org.w3c.dom.Element
+   * should eventually be removed when a more appropriate way of
+   * representing this information is employed.
+   *
+   * @return the documentation element
+   */
+  public Element getDocumentationElement();
+}
\ No newline at end of file