001: /**
002: * ServiceSummary.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 ServiceSummary 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 wsdlURL;
013: private java.lang.String publisherID;
014:
015: public ServiceSummary() {
016: }
017:
018: /**
019: * Gets the name value for this ServiceSummary.
020: *
021: * @return name
022: */
023: public java.lang.String getName() {
024: return name;
025: }
026:
027: /**
028: * Sets the name value for this ServiceSummary.
029: *
030: * @param name
031: */
032: public void setName(java.lang.String name) {
033: this .name = name;
034: }
035:
036: /**
037: * Gets the id value for this ServiceSummary.
038: *
039: * @return id
040: */
041: public java.lang.String getId() {
042: return id;
043: }
044:
045: /**
046: * Sets the id value for this ServiceSummary.
047: *
048: * @param id
049: */
050: public void setId(java.lang.String id) {
051: this .id = id;
052: }
053:
054: /**
055: * Gets the shortDescription value for this ServiceSummary.
056: *
057: * @return shortDescription
058: */
059: public java.lang.String getShortDescription() {
060: return shortDescription;
061: }
062:
063: /**
064: * Sets the shortDescription value for this ServiceSummary.
065: *
066: * @param shortDescription
067: */
068: public void setShortDescription(java.lang.String shortDescription) {
069: this .shortDescription = shortDescription;
070: }
071:
072: /**
073: * Gets the wsdlURL value for this ServiceSummary.
074: *
075: * @return wsdlURL
076: */
077: public java.lang.String getWsdlURL() {
078: return wsdlURL;
079: }
080:
081: /**
082: * Sets the wsdlURL value for this ServiceSummary.
083: *
084: * @param wsdlURL
085: */
086: public void setWsdlURL(java.lang.String wsdlURL) {
087: this .wsdlURL = wsdlURL;
088: }
089:
090: /**
091: * Gets the publisherID value for this ServiceSummary.
092: *
093: * @return publisherID
094: */
095: public java.lang.String getPublisherID() {
096: return publisherID;
097: }
098:
099: /**
100: * Sets the publisherID value for this ServiceSummary.
101: *
102: * @param publisherID
103: */
104: public void setPublisherID(java.lang.String publisherID) {
105: this.publisherID = publisherID;
106: }
107: }
|