Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
EntityPrivacyPreferencesContract |
|
| 1.0;1 |
1 | /** | |
2 | * Copyright 2005-2011 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.identity.privacy; | |
17 | ||
18 | ||
19 | import org.kuali.rice.core.api.mo.common.GloballyUnique; | |
20 | import org.kuali.rice.core.api.mo.common.Versioned; | |
21 | ||
22 | public interface EntityPrivacyPreferencesContract extends Versioned, GloballyUnique { | |
23 | ||
24 | /** | |
25 | * Gets this id of the parent identity object. | |
26 | * @return the identity id for this {@link EntityPrivacyPreferencesContract} | |
27 | */ | |
28 | String getEntityId(); | |
29 | ||
30 | /** | |
31 | * This is value designating if Entity Name should be suppressed. | |
32 | * | |
33 | * <p> | |
34 | * This is a boolean value that shows if identity names should be suppressed or not. | |
35 | * </p> | |
36 | * | |
37 | * @return suppressName | |
38 | */ | |
39 | boolean isSuppressName(); | |
40 | ||
41 | /** | |
42 | * This is value designating if Entity Address should be suppressed. | |
43 | * | |
44 | * <p> | |
45 | * This is a boolean value that shows if identity addresses should be suppressed or not. | |
46 | * </p> | |
47 | * | |
48 | * @return suppressAddress | |
49 | */ | |
50 | boolean isSuppressAddress(); | |
51 | ||
52 | /** | |
53 | * This is value designating if Entity Email should be suppressed. | |
54 | * | |
55 | * <p> | |
56 | * This is a boolean value that shows if identity emails should be suppressed or not. | |
57 | * </p> | |
58 | * | |
59 | * @return suppressEmail | |
60 | */ | |
61 | boolean isSuppressEmail(); | |
62 | ||
63 | /** | |
64 | * This is value designating if Entity Phone should be suppressed. | |
65 | * | |
66 | * <p> | |
67 | * This is a boolean value that shows if identity phones should be suppressed or not. | |
68 | * </p> | |
69 | * | |
70 | * @return suppressPhone | |
71 | */ | |
72 | boolean isSuppressPhone(); | |
73 | ||
74 | /** | |
75 | * This is value designating if Entity Personal information should be suppressed. | |
76 | * | |
77 | * <p> | |
78 | * This is a boolean value that shows if identity personal information should be suppressed or not. | |
79 | * </p> | |
80 | * | |
81 | * @return suppressPersonal | |
82 | */ | |
83 | boolean isSuppressPersonal(); | |
84 | } |