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