View Javadoc
1   /**
2    * Copyright 2011-2013 The Kuali Foundation Licensed under the Educational
3    * Community License, Version 2.0 (the "License"); you may not use this file
4    * except in compliance with the License. You may obtain a copy of the License
5    * at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12   * License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  package org.kuali.mobility.library.entity;
16  
17  import org.kuali.mobility.security.authz.expression.Expression;
18  import org.kuali.mobility.security.authz.expression.GroupExpression;
19  
20  /**
21   * A class defining permission for the Library Tool
22   * @author Kuali Mobility Team (mobility.collab@kuali.org)
23   * @since 2.3.0
24   */
25  public class LibraryPermissions {
26  
27  	/**
28  	 * Group required to for admin features on the library tool
29  	 */
30  	public static final String ADMIN = "LIBRARY_ADMIN";
31  	
32  	/**
33  	 * Expression to check if the user has admin rights
34  	 */
35  	public static final Expression ADMIN_EXPRESSION = new GroupExpression(ADMIN);
36  	
37  	
38  }