b738b5ddb929232d79c15a74b44689f893576c20
[utils] / security / src / main / java / org / wamblee / security / authorization / IsaOperationCondition.java
1 /*
2  * Copyright 2005 the original author or authors.
3  * 
4  * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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
17 package org.wamblee.security.authorization;
18
19 import org.wamblee.persistence.AbstractPersistent;
20
21 /**
22  * Determiens if an operation is a subclass of a specified operation.
23  */
24 public class IsaOperationCondition extends AbstractPersistent implements
25         OperationCondition {
26
27     /**
28      * Operation that the other operation must be a subclass of.
29      */
30     private Class<? extends Operation> operation;
31
32     /**
33      * Constructs the condition.
34      * 
35      * @param aOperation
36      *            Operation that an operation must be an instance of.
37      */
38     public IsaOperationCondition(Class<? extends Operation> aOperation) {
39         operation = aOperation;
40     }
41
42     /**
43      * For OR mapping.
44      * 
45      */
46     public IsaOperationCondition() {
47         operation = null;
48     }
49
50     /*
51      * (non-Javadoc)
52      * 
53      * @see org.wamblee.security.authorization.OperationCondition#matches(org.wamblee.security.authorization.Operation)
54      */
55     public boolean matches(Operation aOperation) {
56         return operation.isInstance(aOperation);
57     }
58
59     /**
60      * Gets the operation as a string. For OR mapping only.
61      * 
62      * @return Operation string.
63      */
64     protected String getOperationString() {
65         if (operation == null) {
66             return null; 
67         }
68         return operation.getName(); 
69     }
70
71     /**
72      * Sets the operation as a string. For OR mapping only.
73      * 
74      * @param aOperation
75      *            Operation string.
76      */
77     protected void setOperationString(String aOperation) {
78         if  (aOperation == null ) { 
79             return;
80         }
81         try { 
82             operation = (Class<? extends Operation>)Class.forName(aOperation);
83         } catch (Exception e) { 
84             throw new IllegalArgumentException("Unknown class '" + aOperation + "'");
85         }
86     }
87
88     /*
89      * (non-Javadoc)
90      * 
91      * @see java.lang.Object#toString()
92      */
93     @Override
94     public String toString() {
95         return "IsaOperationCondition(operation=" + operation.getName() + ")";
96     }
97
98 }