/** * Copyright 1996-2014 FoxBPM ORG. * * 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. * * @author kenshin * @author ych */ package org.foxbpm.engine; public class Constant { /** foxbpm引擎中所有用户的标识 */ public final static String FOXBPM_ALL_USER = "foxbpm_all_user"; /** foxbpm引擎中所有流程标识 */ public final static String FOXBPM_ALL_FLOW = "foxbpm_all_flow"; /** 角色类型 */ public final static String ROLE_TYPE = "role"; /** 部门类型 */ public final static String DEPT_TYPE = "dept"; public final static String USER_TYPE = "user"; /** 流程定义Id */ public final static String PROCESS_DEFINE_ID = "processDefineId"; /** 流程定义Key */ public final static String PROCESS_DEFINE_KEY = "processDefineKey"; /** 流程定义Name */ public final static String PROCESS_DEFINE_NAME = "processDefineName"; /** svg属性key标示 */ public static final String SVG_PROPERTIES_NAME = "svgDocument"; /** 数据库变量类型 */ public static final String DB_BIZTYPE = "dataBaseVariable"; /** 数据库变量类型 */ public static final String BIZTYPE_CUSTOMVARIABLE = "customVariable"; /** 业务表名称 */ public static final String _BIZNAME = "_BizName"; /** 业务表关联键 */ public static final String _BIZKEYFIELD = "_BizKeyField"; }