Mercurial > repos > ganjoo > webservice_toolsuite
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d5cd409b8a18 |
---|---|
1 /* | |
2 * (c) Copyright IBM Corp 2001, 2005 | |
3 */ | |
4 | |
5 package javax.wadls; | |
6 | |
7 import java.util.List; | |
8 | |
9 import org.w3c.dom.*; | |
10 | |
11 | |
12 | |
13 /** | |
14 * This interface represents an input message, and contains the name | |
15 * of the input and the message itself. | |
16 * | |
17 * @author Matthew J. Duftler | |
18 */ | |
19 public interface Request extends java.io.Serializable,ModelReferenceExtensible | |
20 { | |
21 /** | |
22 * Set the name of this input message. | |
23 * | |
24 * @param name the desired name | |
25 */ | |
26 public void setName(String name); | |
27 | |
28 | |
29 | |
30 /** | |
31 * Get the name of this input message. | |
32 * | |
33 * @return the input message name | |
34 */ | |
35 public String getName(); | |
36 public void setParamList(List paramList); | |
37 public List getParamList(); | |
38 | |
39 | |
40 public void setInputXSDList(List inputXSDList); | |
41 public List getInputXSDList(); | |
42 | |
43 /** | |
44 * Set the documentation element for this document. This dependency | |
45 * on org.w3c.dom.Element should eventually be removed when a more | |
46 * appropriate way of representing this information is employed. | |
47 * | |
48 * @param docEl the documentation element | |
49 */ | |
50 public void setDocumentationElement(Element docEl); | |
51 | |
52 /** | |
53 * Get the documentation element. This dependency on org.w3c.dom.Element | |
54 * should eventually be removed when a more appropriate way of | |
55 * representing this information is employed. | |
56 * | |
57 * @return the documentation element | |
58 */ | |
59 public Element getDocumentationElement(); | |
60 } |