Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Authority |
|
| 0.0;0 |
1 | /* | |
2 | * Copyright (c) 2009, Swiss Federal Department of Defence Civil Protection and Sport | |
3 | * (http://www.vbs.admin.ch) | |
4 | * Copyright (c) 2009, Ergon Informatik AG (http://www.ergon.ch) | |
5 | * All rights reserved. | |
6 | * | |
7 | * Licensed under the Open Permis License which accompanies this distribution, | |
8 | * and is available at http://www.openpermis.org/BSDlicenceKent.txt | |
9 | */ | |
10 | package org.openpermis.policy; | |
11 | ||
12 | import org.openpermis.Subject; | |
13 | ||
14 | ||
15 | ||
16 | /** | |
17 | * An authority of a policy. | |
18 | * <p>An authority combines two aspects. First, it appears as a part of a role assignment | |
19 | * rule in a policy. Second, it can be returned as the issuer of a role by another subject. | |
20 | * | |
21 | * @see Subject#getIssuersOf(Role) | |
22 | * @since 0.1.0 | |
23 | */ | |
24 | public interface Authority | |
25 | extends Part, Subject | |
26 | { | |
27 | ||
28 | //---- Methods | |
29 | ||
30 | } |