| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
DEFAULT_KEYSPACE |
"camunda" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
INSERT_STMNT |
"INSERT into cam_deployment (id, name, deploy_time) values (?, ?, ?);" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
INSERT |
"INSERT into cam_proc_inst (id, version, business_key) values (?, ?, ?);" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
EVENT_SUBSCRIPTIONS |
"event_subscriptions" |
public static final String |
EXECUTIONS |
"executions" |
public static final String |
NAME |
"process-instance-compostite" |
public static final String |
VARIABLES |
"variables" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
INSERT |
"INSERT into cam_resource (id, name, deployment_id, content) values (?, ?, ?, ?);" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
CREATE_TABLE_STMNT |
"CREATE TABLE IF NOT EXISTS cam_deployment (id text, name text, deploy_time bigint, PRIMARY KEY (id));" |
protected static final String |
DROP_TABLE |
"DROP TABLE IF EXISTS cam_deployment" |
public static final String |
TABLE_NAME |
"cam_deployment" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
CREATE_INDEX_TABLE |
"CREATE TABLE IF NOT EXISTS cam_index (idx_name text, idx_value text, val text, PRIMARY KEY ((idx_name, idx_value), val));" |
protected static final String |
DROP_INDEX_TABLE |
"DROP TABLE IF EXISTS cam_index;" |
public static final String |
INDEX_TABLE_NAME |
"cam_index" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
CREATE_TABLE |
"CREATE TABLE IF NOT EXISTS cam_job_def (id text, proc_def_id text, proc_def_key text, act_id text, type text, config text, priority int, suspension_state int, revision int, PRIMARY KEY (id));" |
protected static final String |
DROP_TABLE |
"DROP TABLE IF EXISTS cam_job_def" |
public static final String |
TABLE_NAME |
"cam_job_def" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
CREATE_INDEX |
"CREATE TABLE IF NOT EXISTS cam_job_idx (shard_id timestamp, is_locked boolean, sort_time timestamp, id text, PRIMARY KEY ((shard_id, is_locked), sort_time, id) ) WITH CLUSTERING ORDER BY (sort_time ASC);" |
protected static final String |
CREATE_TABLE |
"CREATE TABLE IF NOT EXISTS cam_job (id text, type text, due_date timestamp, lock_exp_time timestamp, lock_owner text, exclusive boolean, execution_id text, process_instance_id text, process_def_id text, process_def_key text, retries int, exception_stack_id text, exception_message text, repeat text, handler_type text, handler_cfg text, deployment_id text, suspension_state int, job_def_id text, sequence_counter bigint, priority bigint, revision int, PRIMARY KEY (id) ); " |
protected static final String |
DROP_INDEX |
"DROP TABLE IF EXISTS cam_job_idx" |
protected static final String |
DROP_TABLE |
"DROP TABLE IF EXISTS cam_job" |
public static final String |
JOB_INDEX_TABLE |
"cam_job_idx" |
public static final String |
TABLE_NAME |
"cam_job" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected final String |
CREATE_INDEX_TABLE |
"CREATE TABLE IF NOT EXISTS cam_ordered_index (idx_name text, part_id text, order_by timestamp, val text, PRIMARY KEY ((idx_name, part_id), order_by, val) ) WITH CLUSTERING ORDER BY (order_by ASC);" |
protected static final String |
DROP_INDEX_TABLE |
"DROP TABLE IF EXISTS cam_ordered_index;" |
public static final String |
INDEX_TABLE_NAME |
"cam_ordered_index" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
CREATE_TABLE |
"CREATE TABLE IF NOT EXISTS cam_proc_def (id text, key text, version int, category text, name text, deployment_id text, suspension_state int, PRIMARY KEY (id));" |
protected static final String |
CREATE_TABLE_IDX_VERSION |
"CREATE TABLE IF NOT EXISTS cam_proc_def_idx_version (key text, version int, id text, PRIMARY KEY (key,version)) WITH CLUSTERING ORDER BY (version DESC);" |
protected static final String |
DEPLOYMENT_ID_IDX |
"CREATE INDEX IF NOT EXISTS ON cam_proc_def ( deployment_id );" |
protected static final String |
DROP_TABLE |
"DROP TABLE IF EXISTS cam_proc_def" |
protected static final String |
DROP_TABLE_IDX_VERSION |
"DROP TABLE IF EXISTS cam_proc_def_idx_version" |
public static final String |
TABLE_NAME |
"cam_proc_def" |
public static final String |
TABLE_NAME_IDX_VERSION |
"cam_proc_def_idx_version" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
CREATE_TABLE |
"CREATE TABLE IF NOT EXISTS cam_proc_inst (id text, version int, business_key text, executions map <text, frozen <execution>>,event_subscriptions map <text, frozen <event_subscription>>,variables map <text, frozen <variable>>,PRIMARY KEY (id));" |
public static final String |
DROP_TABLE |
"DROP TABLE IF EXISTS cam_proc_inst;" |
public static final String |
TABLE_NAME |
"cam_proc_inst" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
protected static final String |
CREATE_TABLE_STMNT |
"CREATE TABLE IF NOT EXISTS cam_resource (id text, name text, deployment_id text,content blob, PRIMARY KEY (id));" |
protected static final String |
DEPLOYMENT_ID_IDX |
"CREATE INDEX IF NOT EXISTS deployment_idx ON cam_resource ( deployment_id );" |
protected static final String |
DROP_TABLE |
"DROP TABLE IF EXISTS cam_resource" |
public static final String |
TABLE_NAME |
"cam_resource" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
CREATE |
"CREATE TYPE IF NOT EXISTS event_subscription (id text, event_type text, event_name text, execution_id text, proc_inst_id text, activity_id text, configuration text, created bigint, );" |
public static final String |
DROP |
"DROP TYPE IF EXISTS event_subscription;" |
public static final String |
TYPE_NAME |
"event_subscription" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
CREATE |
"CREATE TYPE IF NOT EXISTS execution (id text, proc_inst_id text, parent_id text, proc_def_id text, super_exec text, super_case_exec text, case_inst_id text, act_inst_id text, act_id text, is_active boolean, is_concurrent boolean, is_scope boolean, is_event_scope boolean, suspension_state int, cached_ent_state int, sequence_counter bigint, );" |
public static final String |
DROP |
"DROP TYPE IF EXISTS execution;" |
public static final String |
TYPE_NAME |
"execution" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
CREATE_TYPE_STATEMENT |
"CREATE TYPE IF NOT EXISTS variable (id text,type text,name text,execution_id text,proc_inst_id text,case_execution_id text,case_inst_id text,task_id text,bytearray_id text,double double,long bigint,text text,text2 text,sequence_counter bigint,is_concurrent_local boolean);" |
public static final String |
DROP_TYPE_STATEMENT |
"DROP TYPE IF EXISTS variable;" |
public static final String |
TYPE_NAME |
"variable" |
Copyright © 2016 camunda services GmbH. All rights reserved.