001/**
002 * Copyright 2005-2016 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.uif;
017
018/**
019 * Constants for property paths
020 * 
021 * @author Kuali Rice Team (rice.collab@kuali.org)
022 */
023public class UifPropertyPaths {
024        
025        public static final String ACTION_PARAMETERS = "actionParameters";
026        public static final String BIND_OBJECT_PATH = "bindingInfo.bindingObjectPath";
027        public static final String BIND_TO_FORM = "bindingInfo.bindToForm";
028        public static final String COMPONENT_MODIFIERS = "componentModifiers";
029        public static final String CONTEXT = "context";
030        public static final String CRITERIA_FIELDS = "criteriaFields";
031    public static final String DOCUMENT_ID = "documentId";
032    public static final String ID = "id";
033    public static final String FACTORY_ID = "factoryId";
034        public static final String NEW_COLLECTION_LINES = "newCollectionLines";
035    public static final String OBJECT_ID = "objectId";
036        public static final String PROPERTY_EXPRESSIONS = "propertyExpressions";
037    public static final String SELECTED_COLLECTION_LINES = "selectedCollectionLines";
038    public static final String SEARCH_RESULTS = "searchResults";
039}