diff WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/Request.java @ 0:d5cd409b8a18 default tip

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author ganjoo
date Tue, 07 Jun 2011 18:00:50 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/Request.java	Tue Jun 07 18:00:50 2011 -0400
@@ -0,0 +1,60 @@
+/*
+ * (c) Copyright IBM Corp 2001, 2005 
+ */
+
+package javax.wadls;
+
+import java.util.List;
+
+import org.w3c.dom.*;
+
+
+
+/**
+ * This interface represents an input message, and contains the name
+ * of the input and the message itself.
+ *
+ * @author Matthew J. Duftler
+ */
+public interface Request extends java.io.Serializable,ModelReferenceExtensible
+{
+  /**
+   * Set the name of this input message.
+   *
+   * @param name the desired name
+   */
+  public void setName(String name);
+  
+  
+  
+  /**
+   * Get the name of this input message.
+   *
+   * @return the input message name
+   */
+  public String getName();
+  public void setParamList(List paramList);
+  public List getParamList();
+
+
+  public void setInputXSDList(List inputXSDList);
+  public List getInputXSDList();
+
+  /**
+   * 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