View Javadoc
1   /*
2    * Copyright 2009 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 1.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.opensource.org/licenses/ecl1.php
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.kuali.ole.sec;
17  
18  /**
19   * Constants for Property Names
20   */
21  public class SecPropertyConstants {
22      public static final String ATTRIBUTE_ID = "attributeId";
23      public static final String ATTRIBUTE_NAME = "attributeName";
24      public static final String ATTRIBUTE_VALUE = "attributeValue";
25      public static final String DEFINITION_ID = "definitionId";
26      public static final String INQUIRY_NAMESPACE_CODE = "inquiryNamespaceCode";
27      public static final String FINANCIAL_SYSTEM_DOCUMENT_TYPE_CODE = "financialSystemDocumentTypeCode";
28      public static final String MEMBER_ID = "memberId";
29      public static final String MODEL_DEFINITIONS = "modelDefinitions";
30      public static final String MODEL_MEMBERS = "modelMembers";
31      public static final String MODEL_ID = "modelId";
32      public static final String MEMBER_TYPE_CODE = "memberTypeCode";
33      public static final String OPERATOR_CODE = "operatorCode";
34      public static final String PRINCIPAL_DEFINITIONS = "principalDefinitions";
35      public static final String SCREEN_TYPE = "screenType";
36      public static final String SECURITY_ATTRIBUTE_NAME = "securityAttributeName";
37      public static final String SECURITY_ATTRIBUTE_NAME_NESTED = "securityAttribute.name";
38      public static final String SECURITY_PERSON_PRINCIPAL_NAME = "securityPerson.principalName";
39      public static final String TEMPLATE_ID = "templateId";
40      public final static String ROLE_ID = "roleId";
41      public final static String ROLE_NAME = "roleName";
42      public final static String GROUP_ID = "groupId";
43      public final static String GROUP_NAME = "groupName";
44      public final static String PRINCIPAL_ID = "principalId";
45      public final static String PRINCIPAL_NAME = "principalName";
46      public static final String FIRST_NAME = "firstName";
47      public static final String MIDDLE_NAME = "middleName";
48      public static final String LAST_NAME = "lastName";
49      public static final String ENTITY_ID = "entityId";
50      public static final String EMPLOYEE_ID = "employeeId";
51      public final static String EMAIL_ADDRESS = "emailAddress";
52  }