Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
PostalCode |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2008-2009 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl2.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.rice.kns.bo; | |
17 | ||
18 | import org.kuali.rice.kns.bo.ExternalizableBusinessObject; | |
19 | ||
20 | public interface PostalCode extends ExternalizableBusinessObject{ | |
21 | ||
22 | /** | |
23 | * Gets the postalCode attribute. | |
24 | * | |
25 | * @return Returns the postalCode | |
26 | */ | |
27 | public abstract String getPostalCode(); | |
28 | ||
29 | /** | |
30 | * Sets the postalCode attribute. | |
31 | * | |
32 | * @param postalCode The postalCode to set. | |
33 | */ | |
34 | public abstract void setPostalCode(String postalCode); | |
35 | ||
36 | /** | |
37 | * Gets the postalStateCode attribute. | |
38 | * | |
39 | * @return Returns the postalStateCode | |
40 | */ | |
41 | public abstract String getPostalStateCode(); | |
42 | ||
43 | /** | |
44 | * Sets the postalStateCode attribute. | |
45 | * | |
46 | * @param postalStateCode The postalStateCode to set. | |
47 | */ | |
48 | public abstract void setPostalStateCode(String postalStateCode); | |
49 | ||
50 | /** | |
51 | * Gets the postalCityName attribute. | |
52 | * | |
53 | * @return Returns the postalCityName | |
54 | */ | |
55 | public abstract String getPostalCityName(); | |
56 | ||
57 | /** | |
58 | * Sets the postalCityName attribute. | |
59 | * | |
60 | * @param postalCityName The postalCityName to set. | |
61 | */ | |
62 | public abstract void setPostalCityName(String postalCityName); | |
63 | ||
64 | /** | |
65 | * Gets the state attribute. | |
66 | * | |
67 | * @return Returns the state. | |
68 | */ | |
69 | public abstract State getState(); | |
70 | ||
71 | /** | |
72 | * Sets the state attribute value. | |
73 | * | |
74 | * @param state The state to set. | |
75 | */ | |
76 | public abstract void setState(State state); | |
77 | ||
78 | /** | |
79 | * Gets the active attribute. | |
80 | * | |
81 | * @return Returns the active. | |
82 | */ | |
83 | public abstract boolean isActive(); | |
84 | ||
85 | /** | |
86 | * Sets the active attribute value. | |
87 | * | |
88 | * @param active The active to set. | |
89 | */ | |
90 | public abstract void setActive(boolean active); | |
91 | ||
92 | public abstract String getCountyCode(); | |
93 | ||
94 | public abstract void setCountyCode(String countyCode); | |
95 | ||
96 | /** | |
97 | * Gets the postalCountryCode attribute. | |
98 | * | |
99 | * @return Returns the postalCountryCode. | |
100 | */ | |
101 | public abstract String getPostalCountryCode(); | |
102 | ||
103 | /** | |
104 | * Sets the postalCountryCode attribute value. | |
105 | * | |
106 | * @param postalCountryCode The postalCountryCode to set. | |
107 | */ | |
108 | public abstract void setPostalCountryCode(String postalCountryCode); | |
109 | ||
110 | /** | |
111 | * Gets the country attribute. | |
112 | * | |
113 | * @return Returns the country. | |
114 | */ | |
115 | public abstract Country getCountry(); | |
116 | ||
117 | /** | |
118 | * Sets the country attribute value. | |
119 | * | |
120 | * @param country The country to set. | |
121 | */ | |
122 | public abstract void setCountry(Country country); | |
123 | ||
124 | /** | |
125 | * Gets the county attribute. | |
126 | * | |
127 | * @return Returns the county. | |
128 | */ | |
129 | public abstract County getCounty(); | |
130 | ||
131 | /** | |
132 | * Sets the county attribute value. | |
133 | * | |
134 | * @param county The county to set. | |
135 | */ | |
136 | public abstract void setCounty(County county); | |
137 | ||
138 | ||
139 | } |