001: /**
002: * ServiceDetail.java
003: *
004: * This file was auto-generated from WSDL
005: * by the Apache Axis 1.2beta Mar 31, 2004 (12:47:03 EST) WSDL2Java emitter.
006: */package org.objectweb.jonas.jtests.gen.xmethods;
007:
008: public class ServiceDetail implements java.io.Serializable {
009: private java.lang.String name;
010: private java.lang.String id;
011: private java.lang.String shortDescription;
012: private java.lang.String description;
013: private java.lang.String implementationID;
014: private java.lang.String email;
015: private java.lang.String wsdlURL;
016: private java.lang.String infoURL;
017: private java.lang.String discussionURL;
018: private java.lang.String notes;
019: private java.lang.String tmodelID;
020: private java.lang.String publisherID;
021: private java.lang.String uuid;
022:
023: public ServiceDetail() {
024: }
025:
026: /**
027: * Gets the name value for this ServiceDetail.
028: *
029: * @return name
030: */
031: public java.lang.String getName() {
032: return name;
033: }
034:
035: /**
036: * Sets the name value for this ServiceDetail.
037: *
038: * @param name
039: */
040: public void setName(java.lang.String name) {
041: this .name = name;
042: }
043:
044: /**
045: * Gets the id value for this ServiceDetail.
046: *
047: * @return id
048: */
049: public java.lang.String getId() {
050: return id;
051: }
052:
053: /**
054: * Sets the id value for this ServiceDetail.
055: *
056: * @param id
057: */
058: public void setId(java.lang.String id) {
059: this .id = id;
060: }
061:
062: /**
063: * Gets the shortDescription value for this ServiceDetail.
064: *
065: * @return shortDescription
066: */
067: public java.lang.String getShortDescription() {
068: return shortDescription;
069: }
070:
071: /**
072: * Sets the shortDescription value for this ServiceDetail.
073: *
074: * @param shortDescription
075: */
076: public void setShortDescription(java.lang.String shortDescription) {
077: this .shortDescription = shortDescription;
078: }
079:
080: /**
081: * Gets the description value for this ServiceDetail.
082: *
083: * @return description
084: */
085: public java.lang.String getDescription() {
086: return description;
087: }
088:
089: /**
090: * Sets the description value for this ServiceDetail.
091: *
092: * @param description
093: */
094: public void setDescription(java.lang.String description) {
095: this .description = description;
096: }
097:
098: /**
099: * Gets the implementationID value for this ServiceDetail.
100: *
101: * @return implementationID
102: */
103: public java.lang.String getImplementationID() {
104: return implementationID;
105: }
106:
107: /**
108: * Sets the implementationID value for this ServiceDetail.
109: *
110: * @param implementationID
111: */
112: public void setImplementationID(java.lang.String implementationID) {
113: this .implementationID = implementationID;
114: }
115:
116: /**
117: * Gets the email value for this ServiceDetail.
118: *
119: * @return email
120: */
121: public java.lang.String getEmail() {
122: return email;
123: }
124:
125: /**
126: * Sets the email value for this ServiceDetail.
127: *
128: * @param email
129: */
130: public void setEmail(java.lang.String email) {
131: this .email = email;
132: }
133:
134: /**
135: * Gets the wsdlURL value for this ServiceDetail.
136: *
137: * @return wsdlURL
138: */
139: public java.lang.String getWsdlURL() {
140: return wsdlURL;
141: }
142:
143: /**
144: * Sets the wsdlURL value for this ServiceDetail.
145: *
146: * @param wsdlURL
147: */
148: public void setWsdlURL(java.lang.String wsdlURL) {
149: this .wsdlURL = wsdlURL;
150: }
151:
152: /**
153: * Gets the infoURL value for this ServiceDetail.
154: *
155: * @return infoURL
156: */
157: public java.lang.String getInfoURL() {
158: return infoURL;
159: }
160:
161: /**
162: * Sets the infoURL value for this ServiceDetail.
163: *
164: * @param infoURL
165: */
166: public void setInfoURL(java.lang.String infoURL) {
167: this .infoURL = infoURL;
168: }
169:
170: /**
171: * Gets the discussionURL value for this ServiceDetail.
172: *
173: * @return discussionURL
174: */
175: public java.lang.String getDiscussionURL() {
176: return discussionURL;
177: }
178:
179: /**
180: * Sets the discussionURL value for this ServiceDetail.
181: *
182: * @param discussionURL
183: */
184: public void setDiscussionURL(java.lang.String discussionURL) {
185: this .discussionURL = discussionURL;
186: }
187:
188: /**
189: * Gets the notes value for this ServiceDetail.
190: *
191: * @return notes
192: */
193: public java.lang.String getNotes() {
194: return notes;
195: }
196:
197: /**
198: * Sets the notes value for this ServiceDetail.
199: *
200: * @param notes
201: */
202: public void setNotes(java.lang.String notes) {
203: this .notes = notes;
204: }
205:
206: /**
207: * Gets the tmodelID value for this ServiceDetail.
208: *
209: * @return tmodelID
210: */
211: public java.lang.String getTmodelID() {
212: return tmodelID;
213: }
214:
215: /**
216: * Sets the tmodelID value for this ServiceDetail.
217: *
218: * @param tmodelID
219: */
220: public void setTmodelID(java.lang.String tmodelID) {
221: this .tmodelID = tmodelID;
222: }
223:
224: /**
225: * Gets the publisherID value for this ServiceDetail.
226: *
227: * @return publisherID
228: */
229: public java.lang.String getPublisherID() {
230: return publisherID;
231: }
232:
233: /**
234: * Sets the publisherID value for this ServiceDetail.
235: *
236: * @param publisherID
237: */
238: public void setPublisherID(java.lang.String publisherID) {
239: this .publisherID = publisherID;
240: }
241:
242: /**
243: * Gets the uuid value for this ServiceDetail.
244: *
245: * @return uuid
246: */
247: public java.lang.String getUuid() {
248: return uuid;
249: }
250:
251: /**
252: * Sets the uuid value for this ServiceDetail.
253: *
254: * @param uuid
255: */
256: public void setUuid(java.lang.String uuid) {
257: this.uuid = uuid;
258: }
259: }
|