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.indexing.utils.FilterUtil 
    Modifier and Type Constant Field Value
    public static final java.lang.String PARAM_MUST "must"
    public static final java.lang.String PARAM_MUST_NOT "mustNot"
    public static final java.lang.String PARAM_NOT_EXISTS "notExists"
    public static final java.lang.String PARAM_SHOULD "should"
  • 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.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.service.reports.PlatformReportType 
    Modifier and Type Constant Field Value
    public static final java.lang.String DURATION "duration"
    public static final java.lang.String FREQUENCY "frequency"
  • com.flowable.platform.service.reports.RunReportFilterParam 
    Modifier and Type Constant Field Value
    public static final java.lang.String CREATED "created"
    public static final java.lang.String FINISHED "finished"
  • 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.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_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"