01: // This class was generated by the JAXRPC SI, do not edit.
02: // Contents subject to change without notice.
03: // JAX-RPC Standard Implementation (1.1.3, build R1)
04: // Generated source version: 1.1.3
05:
06: package org.jboss.test.wsrp.core;
07:
08: import java.io.Serializable;
09:
10: public class Telecom implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = 1432675148383103561L;
13: protected TelephoneNum telephone;
14: protected TelephoneNum fax;
15: protected TelephoneNum mobile;
16: protected TelephoneNum pager;
17: protected Extension[] extensions;
18:
19: public Telecom() {
20: }
21:
22: public Telecom(TelephoneNum telephone, TelephoneNum fax,
23: TelephoneNum mobile, TelephoneNum pager,
24: Extension[] extensions) {
25: this .telephone = telephone;
26: this .fax = fax;
27: this .mobile = mobile;
28: this .pager = pager;
29: this .extensions = extensions;
30: }
31:
32: public TelephoneNum getTelephone() {
33: return telephone;
34: }
35:
36: public void setTelephone(TelephoneNum telephone) {
37: this .telephone = telephone;
38: }
39:
40: public TelephoneNum getFax() {
41: return fax;
42: }
43:
44: public void setFax(TelephoneNum fax) {
45: this .fax = fax;
46: }
47:
48: public TelephoneNum getMobile() {
49: return mobile;
50: }
51:
52: public void setMobile(TelephoneNum mobile) {
53: this .mobile = mobile;
54: }
55:
56: public TelephoneNum getPager() {
57: return pager;
58: }
59:
60: public void setPager(TelephoneNum pager) {
61: this .pager = pager;
62: }
63:
64: public Extension[] getExtensions() {
65: return extensions;
66: }
67:
68: public void setExtensions(Extension[] extensions) {
69: this.extensions = extensions;
70: }
71: }
|