Constant Field Values

Contents

com.flowable.*

  • com.flowable.action.api.runtime.ActionTypeLink 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_CHANNEL "channel"
  • com.flowable.action.engine.impl.db.ActionDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/action/db/liquibase/flowable-action-db-changelog.xml"
  • com.flowable.audit.engine.impl.db.AuditDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/audit/db/liquibase/flowable-audit-db-changelog.xml"
  • com.flowable.dataobject.api.repository.serviceregistry.ServiceRegistryFieldMappingTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String BOOLEAN "boolean"
    public static final java.lang.String DATE "date"
    public static final java.lang.String DOUBLE "double"
    public static final java.lang.String INTEGER "integer"
    public static final java.lang.String JSON "json"
    public static final java.lang.String LONG "long"
    public static final java.lang.String STRING "string"
  • com.flowable.dataobject.api.runtime.DataObjectDataSourceIds 
    Modifier and Type Constant Field Value
    public static final java.lang.String DATABASE_SCHEMA_SOURCE "flowableDatabaseSchemaDataSource"
    public static final java.lang.String SERVICE_REGISTRY_SOURCE "flowableServiceRegistryDataSource"
  • com.flowable.dataobject.api.runtime.MasterDataStates 
    Modifier and Type Constant Field Value
    public static final java.lang.String ACTIVE "ACTIVE"
    public static final java.lang.String ARCHIVED "ARCHIVED"
  • com.flowable.dataobject.engine.impl.db.DataObjectDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/dataobject/db/liquibase/flowable-dataobject-db-changelog.xml"
  • com.flowable.dataobject.engine.impl.runtime.DataObjectInstanceVariableType 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_NAME "flowableDataObjectInstance"
  • com.flowable.dataobject.engine.impl.runtime.DataObjectVariableType 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_NAME "flowableDataObject"
  • com.flowable.platform.common.PlatformIndexingConstants 
    Modifier and Type Constant Field Value
    public static final java.lang.String FIELD_INDEX_OVERRIDE "_indexOverride"
    public static final java.lang.String FIELD_MAPPING_TYPE "_mappingType"
  • com.flowable.platform.common.Scopes 
    Modifier and Type Constant Field Value
    public static final java.lang.String CONVERSATION "conversation"
    public static final java.lang.String USER "user"
    public static final java.lang.String USER_ACCOUNT "user-account"
  • com.flowable.platform.common.scope.PlatformScopeTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String ACTION "action"
    public static final java.lang.String ACTION_INSTANCE "action-instance"
    public static final java.lang.String AVATAR "avatar"
    public static final java.lang.String CASE_PAGE "case-page"
    public static final java.lang.String CONVERSATION "conversation"
    public static final java.lang.String DATA_OBJECT "data-object"
    public static final java.lang.String INSPECT "inspect"
    public static final java.lang.String MESSAGE "message"
    public static final java.lang.String POLICY "policy"
    public static final java.lang.String SERVICE "service"
    public static final java.lang.String TEMPLATE "template"
    public static final java.lang.String TEMPORARY_MESSAGE "temporary-message"
    public static final java.lang.String USER "user"
    public static final java.lang.String USER_ACCOUNT "user-account"
  • com.flowable.platform.edorasone.migration.MigrationIdentityLinkType 
    Modifier and Type Constant Field Value
    public static final java.lang.String MODIFICATION_CREATOR "modification_creator"
    public static final java.lang.String MODIFICATION_UPDATER "modification_updater"
  • com.flowable.platform.edorasone.migration.MigrationService 
    Modifier and Type Constant Field Value
    protected static final java.lang.String DUE_TIME "_DUE_TIME"
    protected static final java.lang.String EXTERNAL_ID "_EXTERNAL_ID"
    protected static final java.lang.String ID_VARIABLE_NAME "__ID"
    protected static final java.lang.String INITIAL_ASSIGNED_GROUP_ID "_INITIAL_ASSIGNED_GROUP_ID"
    protected static final java.lang.String PATH "_PATH"
    protected static final java.lang.String PRIORITY "_PRIORITY"
    protected static final java.lang.String PROVIDER_ID "_PROVIDER_ID"
    protected static final java.lang.String RESUBMISSION_TIME "_RESUBMISSION_TIME"
    protected static final java.lang.String STATE_UPDATE_TIME "_STATE_UPDATE_TIME"
    protected static final java.lang.String SUB_STATE "_SUB_STATE"
    protected static final java.lang.String SUB_STATE_UPDATE_TIME "_SUB_STATE_UPDATE_TIME"
    public static final java.lang.String TRASFORMER_VERSION "__TRASFORMER_VERSION"
    public static final java.lang.String VERSION_VALUE "VERSION_1"
  • com.flowable.platform.edorasone.migration.ProcessMigrationService 
    Modifier and Type Constant Field Value
    public static final java.lang.String STATE "__STATE"
  • com.flowable.platform.edorasone.migration.TaskMigrationService 
    Modifier and Type Constant Field Value
    public static final java.lang.String START_USER_ID "__START_USER_ID"
    public static final java.lang.String STATE "__STATE"
  • com.flowable.platform.engine.impl.configuration.ConfigurationNamespaces 
    Modifier and Type Constant Field Value
    public static final java.lang.String DEFAULT_THEME "theme.default"
    public static final java.lang.String THEME "theme"
  • com.flowable.platform.engine.impl.configuration.ThemeAutoImporter 
    Modifier and Type Constant Field Value
    public static final int DEFAULT_ORDER 0
  • com.flowable.platform.engine.impl.db.PlatformDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/platform/db/liquibase/flowable-platform-db-changelog.xml"
  • com.flowable.platform.engine.impl.indexing.job.transformer.AbstractPermissionsAwareElasticSearchTransformer 
    Modifier and Type Constant Field Value
    public static final java.lang.String METADATA_SCRIPT "boolean updated = false;if (params.createdVariables != null) { if (ctx._source.variables == null) { ctx._source.variables = params.createdVariables; updated = true; } else { for(variable in params.createdVariables) { boolean exists = false; for(int i=0; i < ctx._source.variables.length; i++){ if(ctx._source.variables[i].id == variable.id){ exists = true; } } if (!exists){ ctx._source.variables.add(variable); updated = true; } } } } if (params.updatedVariables != null) { if (ctx._source.variables == null) { ctx._source.variables = params.updatedVariables; updated = true; } else { for(variable in params.updatedVariables) { for(int i=0; i < ctx._source.variables.length; i++){ if(ctx._source.variables[i].id == variable.id){ ctx._source.variables[i] = variable; updated = true; } } } }}if (params.removedVariables != null && params.removedVariables.length > 0 && ctx._source.variables != null) { def variablesIterator = ctx._source.variables.iterator(); while(variablesIterator.hasNext()) { def variable = variablesIterator.next(); for (int i=0; i< params.removedVariables.length; i++){ if (variable.id.startsWith(params.removedVariables[i])) { variablesIterator.remove(); updated = true; } } }}if (!updated) { ctx.op = \'none\'; }"
    public static final java.lang.String TRANSLATION_SCRIPT "boolean updated = false;if (params.createdTranslations != null) { if (ctx._source.translations == null) { ctx._source.translations = params.createdTranslations; updated = true; } else { for(translation in params.createdTranslations) { boolean exists = false; for(int i=0; i < ctx._source.translations.length; i++){ if(ctx._source.translations[i].id == translation.id && ctx._source.translations[i].scopeHierarchyType == translation.scopeHierarchyType){ exists = true; } } if (!exists){ ctx._source.translations.add(translation); updated = true; } } } } if (params.updatedTranslations != null) { if (ctx._source.translations == null) { ctx._source.translations = params.updatedTranslations; updated = true; } else { for(translation in params.updatedTranslations) { for(int i=0; i < ctx._source.translations.length; i++){ if(ctx._source.translations[i].id == translation.id && ctx._source.translations[i].scopeHierarchyType == translation.scopeHierarchyType){ ctx._source.translations[i] = translation; updated = true; } } } }}if (params.removedTranslations != null && params.removedTranslations.length > 0 && ctx._source.translations != null) { def translationsIterator = ctx._source.translations.iterator(); while(translationsIterator.hasNext()) { def translation = translationsIterator.next(); for (int i=0; i< params.removedTranslations.length; i++){ if (translation.id.startsWith(params.removedTranslations[i])) { translationsIterator.remove(); updated = true; } } }}if (!updated) { ctx.op = \'none\'; }"
    public static final java.lang.String VARIABLE_SCRIPT "boolean updated = false;if (params.createdVariables != null) { if (ctx._source.variables == null) { ctx._source.variables = params.createdVariables; updated = true; } else { for(variable in params.createdVariables) { boolean exists = false; for(int i=0; i < ctx._source.variables.length; i++){ if(ctx._source.variables[i].id == variable.id && ctx._source.variables[i].scopeHierarchyType == variable.scopeHierarchyType){ exists = true; } } if (!exists){ ctx._source.variables.add(variable); updated = true; } } } } if (params.updatedVariables != null) { if (ctx._source.variables == null) { ctx._source.variables = params.updatedVariables; updated = true; } else { for(variable in params.updatedVariables) { for(int i=0; i < ctx._source.variables.length; i++){ if(ctx._source.variables[i].id == variable.id && ctx._source.variables[i].scopeHierarchyType == variable.scopeHierarchyType){ ctx._source.variables[i] = variable; updated = true; } } } }}if (params.removedVariables != null && params.removedVariables.length > 0 && ctx._source.variables != null) { def variablesIterator = ctx._source.variables.iterator(); while(variablesIterator.hasNext()) { def variable = variablesIterator.next(); for (int i=0; i< params.removedVariables.length; i++){ if (variable.id.startsWith(params.removedVariables[i])) { variablesIterator.remove(); updated = true; } } }}if (!updated) { ctx.op = \'none\'; }"
  • com.flowable.platform.engine.impl.indexing.job.transformer.SyncHistoryIndexActivityTransformer 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_BULK_INDEXING_ACTIVITY "bulkIndexingActivity"
  • com.flowable.platform.engine.impl.indexing.job.transformer.SyncHistoryIndexContentItemTransformer 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_BULK_INDEXING_CONTENT_ITEM "bulkIndexingContentItem"
  • com.flowable.platform.engine.impl.indexing.job.transformer.SyncHistoryIndexPlanItemInstanceTransformer 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_BULK_INDEXING_PLAN_ITEM_INSTANCE "bulkIndexingPlanItemInstance"
  • com.flowable.platform.engine.impl.indexing.job.transformer.SyncHistoryIndexScopeInstanceTransformer 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_BULK_INDEXING_CASE_INSTANCE "bulkIndexingCaseInstance"
    public static final java.lang.String TYPE_BULK_INDEXING_PROCESS_INSTANCE "bulkIndexingProcessInstance"
    public static final java.lang.String TYPE_BULK_INDEXING_ROOT_CASE_INSTANCE "bulkIndexingRootCaseInstance"
    public static final java.lang.String TYPE_BULK_INDEXING_ROOT_PROCESS_INSTANCE "bulkIndexingRootProcessInstance"
    public static final java.lang.String TYPE_BULK_INDEXING_TASK "bulkIndexingTask"
  • com.flowable.policy.engine.impl.db.PolicyDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/policy/db/liquibase/flowable-policy-db-changelog.xml"
  • com.flowable.questionnaire.api.AnswerTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String ACTION "action"
    public static final java.lang.String NAVIGATION "navigation"
    public static final java.lang.String SIMPLE "simple"
  • com.flowable.questionnaire.api.Parameters 
    Modifier and Type Constant Field Value
    public static final java.lang.String INPUT_PARAMETER_NAME "prm_input"
  • com.flowable.questionnaire.api.QuestionnaireModelTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String FORM "form"
    public static final java.lang.String SIMPLE "simple"
  • com.flowable.questionnaire.api.QuestionTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String ACTION "action"
    public static final java.lang.String DOCUMENT_INPUT "doc-input"
    public static final java.lang.String INPUT "input"
    public static final java.lang.String REFERENCED_CONTENT "referenced"
    public static final java.lang.String SIMPLE "simple"
  • com.flowable.serviceregistry.engine.impl.ServiceParameterTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String TYPE_ARRAY "array"
    public static final java.lang.String TYPE_BOOLEAN "boolean"
    public static final java.lang.String TYPE_DATE "date"
    public static final java.lang.String TYPE_DOUBLE "double"
    public static final java.lang.String TYPE_INTEGER "integer"
    public static final java.lang.String TYPE_JSON "json"
    public static final java.lang.String TYPE_LOCAL_DATE "localDate"
    public static final java.lang.String TYPE_LONG "long"
    public static final java.lang.String TYPE_STRING "string"
  • com.flowable.serviceregistry.engine.impl.invoker.InvokerConstants 
    Modifier and Type Constant Field Value
    public static final java.lang.String SINGLE_ARRAY_RESULT "__flowable_service_invoker_array"
  • com.flowable.serviceregistry.engine.impl.invoker.db.DbServiceInvoker 
    Modifier and Type Constant Field Value
    public static final java.lang.String KEY "database"
  • com.flowable.serviceregistry.engine.impl.invoker.expression.ExpressionInvoker 
    Modifier and Type Constant Field Value
    public static final java.lang.String KEY "expression"
  • com.flowable.serviceregistry.engine.impl.invoker.rest.RestServiceInvoker 
    Modifier and Type Constant Field Value
    public static final java.lang.String KEY "rest"
  • com.flowable.serviceregistry.engine.impl.persistence.db.ServiceRegistryDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/serviceregistry/db/liquibase/flowable-serviceregistry-db-changelog.xml"
  • com.flowable.template.api.TemplateTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String DOCUMENT "document"
    public static final java.lang.String EMAIL "email"
    public static final java.lang.String FREEMARKER "freemarker"
    public static final java.lang.String MESSAGE "message"
  • com.flowable.template.api.VariationContentTypes 
    Modifier and Type Constant Field Value
    public static final java.lang.String HTML "html"
    public static final java.lang.String PDF "pdf"
    public static final java.lang.String PLAIN_TEXT "plainText"
    public static final java.lang.String PLAIN_TEXT_TEMPLATE "plainTextTemplate"
    public static final java.lang.String WORD "word"
  • com.flowable.template.engine.impl.db.TemplateDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/template/db/liquibase/flowable-template-db-changelog.xml"
  • com.flowable.template.engine.impl.linq.LinqContext 
    Modifier and Type Constant Field Value
    public static final java.lang.String CONTEXT_NAME "context"
  • com.flowable.workobject.engine.impl.db.WorkObjectDbSchemaManager 
    Modifier and Type Constant Field Value
    public static final java.lang.String LIQUIBASE_CHANGELOG "com/flowable/workobject/db/liquibase/flowable-workobject-db-changelog.xml"
  • com.flowable.workobject.engine.impl.test.AbstractTestCase 
    Modifier and Type Constant Field Value
    protected static final java.lang.String EMPTY_LINE "\n"
  • com.flowable.workobject.engine.test.WorkObjectTestHelper 
    Modifier and Type Constant Field Value
    public static final java.lang.String EMPTY_LINE "\n"