Mercurial > repos > ganjoo > webservice_toolsuite
comparison WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/Response.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 * This interface represents an output message, and contains the name | |
13 * of the output and the message itself. | |
14 * | |
15 * @author Matthew J. Duftler | |
16 */ | |
17 public interface Response extends java.io.Serializable,ModelReferenceExtensible | |
18 { | |
19 /** | |
20 * Set the name of this output message. | |
21 * | |
22 * @param name the desired name | |
23 */ | |
24 public void setName(String name); | |
25 | |
26 /** | |
27 * Get the name of this output message. | |
28 * | |
29 * @return the output message name | |
30 */ | |
31 public String getName(); | |
32 | |
33 public void setParamList(List paramList); | |
34 public List getParamList(); | |
35 | |
36 | |
37 public void setInputXSDList(List inputXSDList); | |
38 public List getInputXSDList(); | |
39 /** | |
40 * Set the documentation element for this document. This dependency | |
41 * on org.w3c.dom.Element should eventually be removed when a more | |
42 * appropriate way of representing this information is employed. | |
43 * | |
44 * @param docEl the documentation element | |
45 */ | |
46 public void setDocumentationElement(Element docEl); | |
47 | |
48 /** | |
49 * Get the documentation element. This dependency on org.w3c.dom.Element | |
50 * should eventually be removed when a more appropriate way of | |
51 * representing this information is employed. | |
52 * | |
53 * @return the documentation element | |
54 */ | |
55 public Element getDocumentationElement(); | |
56 } |