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 Contact implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = 8877254457698689441L;
13: protected Postal postal;
14: protected Telecom telecom;
15: protected Online online;
16: protected Extension[] extensions;
17:
18: public Contact() {
19: }
20:
21: public Contact(Postal postal, Telecom telecom, Online online,
22: Extension[] extensions) {
23: this .postal = postal;
24: this .telecom = telecom;
25: this .online = online;
26: this .extensions = extensions;
27: }
28:
29: public Postal getPostal() {
30: return postal;
31: }
32:
33: public void setPostal(Postal postal) {
34: this .postal = postal;
35: }
36:
37: public Telecom getTelecom() {
38: return telecom;
39: }
40:
41: public void setTelecom(Telecom telecom) {
42: this .telecom = telecom;
43: }
44:
45: public Online getOnline() {
46: return online;
47: }
48:
49: public void setOnline(Online online) {
50: this .online = online;
51: }
52:
53: public Extension[] getExtensions() {
54: return extensions;
55: }
56:
57: public void setExtensions(Extension[] extensions) {
58: this.extensions = extensions;
59: }
60: }
|