/*******************************************************************************
* Copyright 2011 Adrian Cristian Ionescu
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package ro.zg.opengroups.gwt.shared.constants;
public interface OpenGroupsParams {
public static final String ENTITY_ID="entityId";
public static final String USER_ID="userId";
public static final String PARENT_ID="parentId";
public static final String PAGE_NUMBER="pageNumber";
public static final String ITEMS_ON_PAGE="itemsOnPage";
public static final String ENTITY_TYPE="entityType";
public static final String WITH_CONTENT="withContent";
public static final String DEPTH="depth";
public static final String STATUS="status";
public static final String GLOBAL_STATUS="globalStatus";
public static final String TAG="tag";
public static final String SEARCH_STRING="searchString";
public static final String TARGET_ENTITY_COMPLEX_TYPE="targetEntityComplexType";
public static final String CURRENT_TAB_ACTION_PATH="CURRENT_TAB_ACTION_PATH";
public static final String DESIRED_TAB_ACTION_PATH="DESIRED_TAB_ACTION_PATH";
}