Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
County |
|
| 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 County extends ExternalizableBusinessObject{ | |
21 | ||
22 | public abstract State getState(); | |
23 | ||
24 | public abstract void setState(State state); | |
25 | ||
26 | public abstract boolean isActive(); | |
27 | ||
28 | public abstract void setActive(boolean active); | |
29 | ||
30 | public abstract String getCountyName(); | |
31 | ||
32 | public abstract void setCountyName(String countName); | |
33 | ||
34 | public abstract String getCountyCode(); | |
35 | ||
36 | public abstract void setCountyCode(String countyCode); | |
37 | ||
38 | public abstract String getStateCode(); | |
39 | ||
40 | public abstract void setStateCode(String stateCode); | |
41 | ||
42 | /** | |
43 | * Gets the postalCountryCode attribute. | |
44 | * | |
45 | * @return Returns the postalCountryCode. | |
46 | */ | |
47 | public abstract String getPostalCountryCode(); | |
48 | ||
49 | /** | |
50 | * Sets the postalCountryCode attribute value. | |
51 | * | |
52 | * @param postalCountryCode The postalCountryCode to set. | |
53 | */ | |
54 | public abstract void setPostalCountryCode(String postalCountryCode); | |
55 | ||
56 | /** | |
57 | * Gets the country attribute. | |
58 | * | |
59 | * @return Returns the country. | |
60 | */ | |
61 | public abstract Country getCountry(); | |
62 | ||
63 | /** | |
64 | * Sets the country attribute value. | |
65 | * | |
66 | * @param country The country to set. | |
67 | */ | |
68 | public abstract void setCountry(Country country); | |
69 | ||
70 | } |