01: /**
02: * IDNamePair.java
03: *
04: * This file was auto-generated from WSDL
05: * by the Apache Axis 1.2beta Mar 31, 2004 (12:47:03 EST) WSDL2Java emitter.
06: */package org.objectweb.jonas.jtests.gen.xmethods;
07:
08: public class IDNamePair implements java.io.Serializable {
09: private java.lang.String id;
10: private java.lang.String name;
11:
12: public IDNamePair() {
13: }
14:
15: /**
16: * Gets the id value for this IDNamePair.
17: *
18: * @return id
19: */
20: public java.lang.String getId() {
21: return id;
22: }
23:
24: /**
25: * Sets the id value for this IDNamePair.
26: *
27: * @param id
28: */
29: public void setId(java.lang.String id) {
30: this .id = id;
31: }
32:
33: /**
34: * Gets the name value for this IDNamePair.
35: *
36: * @return name
37: */
38: public java.lang.String getName() {
39: return name;
40: }
41:
42: /**
43: * Sets the name value for this IDNamePair.
44: *
45: * @param name
46: */
47: public void setName(java.lang.String name) {
48: this.name = name;
49: }
50: }
|