/** * Copyright (C) 2011 BonitaSoft S.A. * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2.0 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.bonitasoft.forms.server.api.impl.util; /** * @author Ruiheng Fan */ public class FormWorkflowUtil { public static final String OPERATIONS_LIST_KEY = "OPERATIONS_LIST_KEY"; public static final String OPERATIONS_INPUT_KEY = "OPERATIONS_INPUT_KEY"; public static final String OPERATIONS_KEY = "OPERATIONS_KEY"; public static final String ACTIVITY_INSTANCE_ID_KEY = "ACTIVITY_INSTANCE_ID_KEY"; public static final String PROCESS_DEFINITION_ID_KEY = "PROCESS_DEFINITION_ID_KEY"; public static final String PROCESS_INSTANCE_ID_KEY = "PROCESS_INSTANCE_ID_KEY"; public static final String USER_NAME_KEY = "USER_NAME_KEY"; public static final String USER_ID_KEY = "USER_ID_KEY"; public static final String ACTOR_IDS_KEY = "ACTOR_IDS_KEY"; public static final String OPERATIONS_WITH_CONTEXT_MAP_KEY = "OPERATIONS_WITH_CONTEXT_MAP_KEY"; public static final String CURRENT_VARIABLE_VALUES_MAP_KEY = "CURRENT_VARIABLE_VALUES_MAP_KEY"; public static final String EXECUTE_ACTION_AND_TERMINATE = "executeActionsAndTerminate"; public static final String EXECUTE_ACTION_AND_START_INSTANCE = "executeActionsAndStartInstance"; public static final String IS_ALLOWED_TO_SEE_OVERVIEW_FORM = "isAllowedToSeeOverviewForm"; }