Action | Line # 59 | 0 | 1 | - |
-1.0
|
No Tests | |||
1 | /* | |
2 | * Copyright (c) 2000-2005, University of Salford | |
3 | * All rights reserved. | |
4 | * | |
5 | * Redistribution and use in source and binary forms, with or without | |
6 | * modification, are permitted provided that the following conditions are met: | |
7 | * | |
8 | * Redistributions of source code must retain the above copyright notice, this | |
9 | * list of conditions and the following disclaimer. | |
10 | * | |
11 | * Redistributions in binary form must reproduce the above copyright notice, | |
12 | * this list of conditions and the following disclaimer in the documentation | |
13 | * and/or other materials provided with the distribution. | |
14 | * | |
15 | * Neither the name of the University of Salford nor the names of its | |
16 | * contributors may be used to endorse or promote products derived from this | |
17 | * software without specific prior written permission. | |
18 | * | |
19 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
20 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | |
23 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
24 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
25 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
26 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
27 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
28 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
29 | * POSSIBILITY OF SUCH DAMAGE. | |
30 | */ | |
31 | ||
32 | package issrg.pba; | |
33 | ||
34 | /** | |
35 | * This is an interface to the Action object, used in decision-making. It can | |
36 | * tell the name of the action, and is able to return the part of the | |
37 | * Contextual ADI, related to the action itself (for example, the parameters to | |
38 | * the Action, or arguments to the methods to be invoked). | |
39 | * | |
40 | * <p>According to ISO 10181-3 authorisation framework, Contextual ADI is the | |
41 | * Access Decision Information that depends on the requested action and other | |
42 | * circumstances. This interface allows the retrieval of the access decision | |
43 | * information that directly depends on the action to be performed. Note that | |
44 | * the action name itself could be viewed as a part of the ADI. | |
45 | * | |
46 | * <p>For example, if an Action is a method, the Contextual ADI could be a | |
47 | * collection of arguments to the method call. However, neither the action is | |
48 | * restricted to be a method, nor the format of the ADI is specified. It is up | |
49 | * to the implementors of the Action and AccessPolicy objects. As long as the | |
50 | * format is agreed between them, the system will work properly. | |
51 | * | |
52 | * @see issrg.pba.rbac.policies.AccessPolicy | |
53 | * @see issrg.pba.rbac.PermisAction | |
54 | * | |
55 | * @author A Otenko | |
56 | * @version 0.1 | |
57 | */ | |
58 | ||
59 | public interface Action { | |
60 | /** | |
61 | * This method returns a String name of the Action. | |
62 | * @return the string name of the action | |
63 | * | |
64 | */ | |
65 | public String getActionName(); | |
66 | ||
67 | /** | |
68 | * This method returns a collection of Contextual ADI parameters. | |
69 | * These parameters are used at decision time. | |
70 | * | |
71 | * @return the collection of Contextual ADI parameters | |
72 | */ | |
73 | public Object getContextualADI(); | |
74 | } |
|