2009/05/20 - Apache Shale has been retired.
For more information, please explore the Attic.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.shale.usecases.rolodex;
19
20 import java.io.UnsupportedEncodingException;
21 import java.net.URLEncoder;
22
23 /***
24 * <p>
25 * Represents an entity in the rolodex.
26 * </p>
27 */
28 public class Contact {
29 String name = null;
30
31 String email = null;
32
33 String residentialPhone = null;
34
35 Address residentialAddress = null;
36
37 String businessPhone = null;
38
39 Address businessAddress = null;
40
41 /***
42 * <p>
43 * Returns the first char of the name use by the rolodex index.
44 * </p>
45 */
46 public char getTabIndex() {
47 return getSortName().charAt(0);
48 }
49
50 /***
51 * <p>
52 * Returns the business {@link Address}.
53 * </p>
54 */
55 public Address getBusinessAddress() {
56 if (businessAddress == null)
57 businessAddress = new Address();
58
59 return businessAddress;
60 }
61
62 /***
63 * <p>
64 * Sets the business {@link Address}.
65 * </p>
66 */
67 public void setBusinessAddress(Address businessAddress) {
68 this.businessAddress = businessAddress;
69 }
70
71 /***
72 * <p>
73 * Returns the business phone number.
74 * </p>
75 */
76 public String getBusinessPhone() {
77 return businessPhone;
78 }
79
80 /***
81 * <p>
82 * Sets the business phone number.
83 * </p>
84 */
85 public void setBusinessPhone(String businessPhone) {
86 this.businessPhone = businessPhone;
87 }
88
89 /***
90 * <p>
91 * Returns the email address.
92 * </p>
93 */
94 public String getEmail() {
95 return email;
96 }
97
98 /***
99 * <p>
100 * Sets the email address.
101 * </p>
102 */
103 public void setEmail(String email) {
104 this.email = email;
105 }
106
107 /***
108 * <p>
109 * Gets the entity name.
110 * </p>
111 */
112 public String getName() {
113 return name;
114 }
115
116 /***
117 * <p>
118 * Sets the entity name.
119 * </p>
120 */
121 public void setName(String name) {
122 this.name = name;
123 }
124
125 /***
126 * <p>
127 * Gets the residential {@link Address}.
128 * </p>
129 */
130 public Address getResidentialAddress() {
131 if (residentialAddress == null) {
132 residentialAddress = new Address();
133 }
134 return residentialAddress;
135 }
136
137 /***
138 * <p>
139 * Sets the residential {@link Address}.
140 * </p>
141 */
142 public void setResidentialAddress(Address residentialAddress) {
143 this.residentialAddress = residentialAddress;
144 }
145
146 /***
147 * <p>
148 * Gets the residential phone number.
149 * </p>
150 */
151 public String getResidentialPhone() {
152 return residentialPhone;
153 }
154
155 /***
156 * <p>
157 * Sets the residential phone number.
158 * </p>
159 */
160 public void setResidentialPhone(String residentialPhone) {
161 this.residentialPhone = residentialPhone;
162 }
163
164 /***
165 * <p>Returns the <code>name</code> in upper case.</p>
166 */
167 public String getSortName() {
168 if (name != null)
169 return name.toUpperCase();
170
171 return null;
172 }
173
174 /***
175 * <p>Returns the <code>name</code> encoded.</p>
176 */
177 public String getEncodedName() {
178 String encName = null;
179
180 if (name != null) {
181 try {
182 encName = URLEncoder.encode(name, "UTF-8");
183 } catch (UnsupportedEncodingException e) {}
184 }
185 return encName;
186 }
187
188
189 }