| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| EntityAddressContract |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright 2007-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.kim.api.entity.address; | |
| 17 | ||
| 18 | import org.kuali.rice.core.api.mo.common.GloballyUnique; | |
| 19 | import org.kuali.rice.core.api.mo.common.Identifiable; | |
| 20 | import org.kuali.rice.core.api.mo.common.Versioned; | |
| 21 | import org.kuali.rice.kim.api.entity.TypeContract; | |
| 22 | import org.kuali.rice.krad.bo.DefaultableInactivateable; | |
| 23 | ||
| 24 | /** | |
| 25 | * address information for a KIM entity | |
| 26 | * | |
| 27 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
| 28 | * | |
| 29 | */ | |
| 30 | public interface EntityAddressContract extends Versioned, GloballyUnique, DefaultableInactivateable, Identifiable { | |
| 31 | ||
| 32 | /** | |
| 33 | * Gets this id of the parent entity object. | |
| 34 | * @return the entity id for this {@link EntityAddressContract} | |
| 35 | */ | |
| 36 | String getEntityId(); | |
| 37 | ||
| 38 | /** | |
| 39 | * Gets this entityTypeCode of the {@link EntityAddressContract}'s object. | |
| 40 | * @return the entity type code for this {@link EntityAddressContract} | |
| 41 | */ | |
| 42 | String getEntityTypeCode(); | |
| 43 | ||
| 44 | /** | |
| 45 | * Gets this {@link EntityAddressContract}'s address type code. | |
| 46 | * @return the address type for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 47 | */ | |
| 48 | TypeContract getAddressType(); | |
| 49 | ||
| 50 | /** | |
| 51 | * Gets this {@link EntityAddressContract}'s first line. | |
| 52 | * @return the first line for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 53 | */ | |
| 54 | String getLine1(); | |
| 55 | ||
| 56 | /** | |
| 57 | * Gets this {@link EntityAddressContract}'s second line. | |
| 58 | * @return the second line for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 59 | */ | |
| 60 | String getLine2(); | |
| 61 | ||
| 62 | /** | |
| 63 | * Gets this {@link EntityAddressContract}'s third line. | |
| 64 | * @return the third line for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 65 | */ | |
| 66 | String getLine3(); | |
| 67 | ||
| 68 | /** | |
| 69 | * Gets this {@link EntityAddressContract}'s city name. | |
| 70 | * @return the city name for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 71 | */ | |
| 72 | String getCityName(); | |
| 73 | ||
| 74 | /** | |
| 75 | * Gets this {@link EntityAddressContract}'s state code. | |
| 76 | * @return the state code for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 77 | */ | |
| 78 | String getStateCode(); | |
| 79 | ||
| 80 | /** | |
| 81 | * Gets this {@link EntityAddressContract}'s postal code. | |
| 82 | * @return the postal code for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 83 | */ | |
| 84 | String getPostalCode(); | |
| 85 | ||
| 86 | /** | |
| 87 | * Gets this {@link EntityAddressContract}'s country code. | |
| 88 | * @return the country code for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 89 | */ | |
| 90 | String getCountryCode(); | |
| 91 | ||
| 92 | /** | |
| 93 | * Gets this {@link EntityAddressContract}'s unmasked first line. | |
| 94 | * @return the unmasked first line for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 95 | */ | |
| 96 | String getLine1Unmasked(); | |
| 97 | ||
| 98 | /** | |
| 99 | * Gets this {@link EntityAddressContract}'s unmasked second line. | |
| 100 | * @return the unmasked second line for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 101 | */ | |
| 102 | String getLine2Unmasked(); | |
| 103 | ||
| 104 | /** | |
| 105 | * Gets this {@link EntityAddressContract}'s unmasked third line. | |
| 106 | * @return the unmasked third line for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 107 | */ | |
| 108 | String getLine3Unmasked(); | |
| 109 | ||
| 110 | /** | |
| 111 | * Gets this {@link EntityAddressContract}'s unmasked city name. | |
| 112 | * @return the unmasked city name for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 113 | */ | |
| 114 | String getCityNameUnmasked(); | |
| 115 | ||
| 116 | /** | |
| 117 | * Gets this {@link EntityAddressContract}'s unmasked state code. | |
| 118 | * @return the unmasked state code for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 119 | */ | |
| 120 | String getStateCodeUnmasked(); | |
| 121 | ||
| 122 | /** | |
| 123 | * Gets this {@link EntityAddressContract}'s unmasked postal code. | |
| 124 | * @return the unmasked postal code for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 125 | */ | |
| 126 | String getPostalCodeUnmasked(); | |
| 127 | ||
| 128 | /** | |
| 129 | * Gets this {@link EntityAddressContract}'s unmasked country code. | |
| 130 | * @return the unmasked country code for this {@link EntityAddressContract}, or null if none has been assigned. | |
| 131 | */ | |
| 132 | String getCountryCodeUnmasked(); | |
| 133 | ||
| 134 | /** | |
| 135 | * Returns a boolean value that determines if address fields should be suppressed. | |
| 136 | * @return boolean value that determines if address should be suppressed. | |
| 137 | */ | |
| 138 | boolean isSuppressAddress(); | |
| 139 | } |