01: package com.myeis.services;
02:
03: import org.apache.wsif.format.WSIFFormatHandler;
04: import org.apache.wsif.format.WSIFFormatPart;
05: import org.w3c.dom.Element;
06:
07: public class Customer implements WSIFFormatPart {
08:
09: private String lastName;
10: private String number;
11: private String firstName;
12: private WSIFFormatHandler fh;
13:
14: public Customer() {
15: super ();
16: }
17:
18: /**
19: * Returns the irstName.
20: * @return String
21: */
22: public String getFirstName() {
23: return firstName;
24: }
25:
26: /**
27: * Returns the lastName.
28: * @return String
29: */
30: public String getLastName() {
31: return lastName;
32: }
33:
34: /**
35: * Returns the number.
36: * @return String
37: */
38: public String getNumber() {
39: return number;
40: }
41:
42: /**
43: * Sets the irstName.
44: * @param irstName The irstName to set
45: */
46: public void setFirstName(String irstName) {
47: firstName = irstName;
48: }
49:
50: /**
51: * Sets the lastName.
52: * @param lastName The lastName to set
53: */
54: public void setLastName(String lastName) {
55: this .lastName = lastName;
56: }
57:
58: /**
59: * Sets the number.
60: * @param number The number to set
61: */
62: public void setNumber(String number) {
63: this .number = number;
64: }
65:
66: /**
67: * Returns the h.
68: * @return WSIFFormatHandler
69: */
70: public WSIFFormatHandler _getFormatHandler() {
71: return fh;
72: }
73:
74: /**
75: * Sets the h.
76: * @param h The h to set
77: */
78: public void _setFormatHandler(WSIFFormatHandler h) {
79: fh = h;
80: }
81:
82: public void fireElementEvents() {
83:
84: }
85: }
|