1
2
3
4
5
6
7
8 package it.imolinfo.jbi4corba.test.webservice.generator.testclasses;
9
10 import java.io.Serializable;
11
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14
15 @XmlAccessorType(XmlAccessType.PROPERTY)
16 public class UserProfile implements Serializable {
17
18
19 public String name = null;
20 public String address = null;
21 public int age = (int)0;
22
23 public int[] testArray;
24
25 public UserProfile ()
26 {
27 }
28
29 public UserProfile (String _name, String _address, int _age)
30 {
31 name = _name;
32 address = _address;
33 age = _age;
34 }
35
36 public String getName() {
37 return name;
38 }
39
40 public void setName(String name) {
41 this.name = name;
42 }
43
44 public String getAddress() {
45 return address;
46 }
47
48 public void setAddress(String address) {
49 this.address = address;
50 }
51
52 public int getAge() {
53 return age;
54 }
55
56 public void setAge(int age) {
57 this.age = age;
58 }
59
60 public int[] getTestArray() {
61 return testArray;
62 }
63
64 public void setTestArray(int[] testArray) {
65 this.testArray = testArray;
66 }
67
68
69 }