Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Country |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2008 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 | ||
21 | public interface Country extends ExternalizableBusinessObject { | |
22 | ||
23 | /** | |
24 | * @param postalCountryCode - The postalCountryCode to set | |
25 | */ | |
26 | public abstract void setPostalCountryCode(String postalCountryCode); | |
27 | ||
28 | /** | |
29 | * @return Returns the postalCountryCode | |
30 | */ | |
31 | public abstract String getPostalCountryCode(); | |
32 | ||
33 | /** | |
34 | * @param alternatePostalCountryCode - The alternatePostalCountryCode to set | |
35 | */ | |
36 | public abstract void setAlternatePostalCountryCode(String alternatePostalCountryCode); | |
37 | ||
38 | /** | |
39 | * @return Returns the alternatePostalCountryCode | |
40 | */ | |
41 | public abstract String getAlternatePostalCountryCode(); | |
42 | ||
43 | /** | |
44 | * @param postalCountryName - The postalCountryName to set | |
45 | */ | |
46 | public abstract void setPostalCountryName(String postalCountryName); | |
47 | ||
48 | /** | |
49 | * @return Returns the postalCountryName | |
50 | */ | |
51 | public abstract String getPostalCountryName(); | |
52 | ||
53 | /** | |
54 | * Gets the postalCountryRestrictedIndicator attribute. | |
55 | * | |
56 | * @return Returns the postalCountryRestrictedIndicator. | |
57 | */ | |
58 | public abstract boolean isPostalCountryRestrictedIndicator(); | |
59 | ||
60 | /** | |
61 | * Sets the postalCountryRestrictedIndicator attribute value. | |
62 | * | |
63 | * @param postalCountryRestrictedIndicator The postalCountryRestrictedIndicator to set. | |
64 | */ | |
65 | public abstract void setPostalCountryRestrictedIndicator(boolean postalCountryRestrictedIndicator); | |
66 | ||
67 | /** | |
68 | * Gets the active attribute. | |
69 | * @return Returns the active. | |
70 | */ | |
71 | public abstract boolean isActive(); | |
72 | ||
73 | /** | |
74 | * Sets the active attribute value. | |
75 | * @param active The active to set. | |
76 | */ | |
77 | public abstract void setActive(boolean active); | |
78 | ||
79 | } |