KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > gen > xmethods > ServiceSummary


1 /**
2  * ServiceSummary.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2beta Mar 31, 2004 (12:47:03 EST) WSDL2Java emitter.
6  */

7
8 package org.objectweb.jonas.jtests.gen.xmethods;
9
10 public class ServiceSummary implements java.io.Serializable JavaDoc {
11     private java.lang.String JavaDoc name;
12     private java.lang.String JavaDoc id;
13     private java.lang.String JavaDoc shortDescription;
14     private java.lang.String JavaDoc wsdlURL;
15     private java.lang.String JavaDoc publisherID;
16
17     public ServiceSummary() {
18     }
19
20
21     /**
22      * Gets the name value for this ServiceSummary.
23      *
24      * @return name
25      */

26     public java.lang.String JavaDoc getName() {
27         return name;
28     }
29
30
31     /**
32      * Sets the name value for this ServiceSummary.
33      *
34      * @param name
35      */

36     public void setName(java.lang.String JavaDoc name) {
37         this.name = name;
38     }
39
40
41     /**
42      * Gets the id value for this ServiceSummary.
43      *
44      * @return id
45      */

46     public java.lang.String JavaDoc getId() {
47         return id;
48     }
49
50
51     /**
52      * Sets the id value for this ServiceSummary.
53      *
54      * @param id
55      */

56     public void setId(java.lang.String JavaDoc id) {
57         this.id = id;
58     }
59
60
61     /**
62      * Gets the shortDescription value for this ServiceSummary.
63      *
64      * @return shortDescription
65      */

66     public java.lang.String JavaDoc getShortDescription() {
67         return shortDescription;
68     }
69
70
71     /**
72      * Sets the shortDescription value for this ServiceSummary.
73      *
74      * @param shortDescription
75      */

76     public void setShortDescription(java.lang.String JavaDoc shortDescription) {
77         this.shortDescription = shortDescription;
78     }
79
80
81     /**
82      * Gets the wsdlURL value for this ServiceSummary.
83      *
84      * @return wsdlURL
85      */

86     public java.lang.String JavaDoc getWsdlURL() {
87         return wsdlURL;
88     }
89
90
91     /**
92      * Sets the wsdlURL value for this ServiceSummary.
93      *
94      * @param wsdlURL
95      */

96     public void setWsdlURL(java.lang.String JavaDoc wsdlURL) {
97         this.wsdlURL = wsdlURL;
98     }
99
100
101     /**
102      * Gets the publisherID value for this ServiceSummary.
103      *
104      * @return publisherID
105      */

106     public java.lang.String JavaDoc getPublisherID() {
107         return publisherID;
108     }
109
110
111     /**
112      * Sets the publisherID value for this ServiceSummary.
113      *
114      * @param publisherID
115      */

116     public void setPublisherID(java.lang.String JavaDoc publisherID) {
117         this.publisherID = publisherID;
118     }
119 }
120
Popular Tags