Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
SKIPPERCLIENT_RESTTEMPLATE_BEAN_NAME |
"skipperClientRestTemplate" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
DEFAULT_CREDENTIALS_PROVIDER_COMMAND |
"" |
public static final String |
DEFAULT_HOST |
"localhost" |
public static final String |
DEFAULT_PASSWORD |
"" |
public static final int |
DEFAULT_PORT |
7577 |
public static final String |
DEFAULT_SCHEME |
"http" |
public static final String |
DEFAULT_SKIP_SSL_VALIDATION |
"true" |
public static final String |
DEFAULT_TARGET |
"http://localhost:7577/api" |
public static final String |
DEFAULT_USERNAME |
"" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
SKIPPER_EXECUTOR |
"skipperThreadPoolTaskExecutor" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
VERSION_INFO_PREFIX |
"spring.cloud.skipper.server.version-info" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
ADD_DEFERRED_EVENTS_FK_STATE_DEFERRED_EVENTS_CONSTRAINT |
"alter table deferred_events\n add constraint fk_state_deferred_events\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_SKIPPER_INFO_FK_INFO_STATUS_CONSTRAINT |
"alter table skipper_info\n add constraint fk_info_status\n foreign key (status_id)\n references skipper_status" |
public static final String |
ADD_SKIPPER_PACKAGE_METADATA_FK_PACKAGE_METADATA_PFILE_CONSTRAINT |
"alter table skipper_package_metadata\n add constraint fk_package_metadata_pfile\n foreign key (packagefile_id)\n references skipper_package_file" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_INFO_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_info\n foreign key (info_id)\n references skipper_info" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_MANIFEST_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_manifest\n foreign key (manifest_id)\n references skipper_manifest" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_A_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_a\n foreign key (entry_actions_id)\n references action" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_S_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_A_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_a\n foreign key (exit_actions_id)\n references action" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_S_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_FK_STATE_INITIAL_ACTION_CONSTRAINT |
"alter table state\n add constraint fk_state_initial_action\n foreign key (initial_action_id)\n references action" |
public static final String |
ADD_STATE_FK_STATE_PARENT_STATE_CONSTRAINT |
"alter table state\n add constraint fk_state_parent_state\n foreign key (parent_state_id)\n references state" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_A_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_a\n foreign key (state_actions_id)\n references action" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_S_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_A_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_a\n foreign key (actions_id)\n references action" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_T_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_t\n foreign key (jpa_repository_transition_id)\n references transition" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_GUARD_CONSTRAINT |
"alter table transition\n add constraint fk_transition_guard\n foreign key (guard_id)\n references guard" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_SOURCE_CONSTRAINT |
"alter table transition\n add constraint fk_transition_source\n foreign key (source_id)\n references state" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_TARGET_CONSTRAINT |
"alter table transition\n add constraint fk_transition_target\n foreign key (target_id)\n references state" |
public static final String |
CREATE_INX_PKG_NAME_INDEX |
"create index idx_pkg_name on skipper_package_metadata (name)" |
public static final String |
CREATE_INX_REL_NAME_INDEX |
"create index idx_rel_name on skipper_release (name)" |
public static final String |
CREATE_INX_REPO_NAME_INDEX |
"create index idx_repo_name on skipper_repository (name)" |
public static final String |
CREATE_INX_UK_INDEX |
"create unique index uk_repository on skipper_repository (name)" |
public static final String |
CREATE_SKIPPER_APP_DEPLOYER_DATA_TABLE |
"create table skipper_app_deployer_data (\n id bigint not null,\n object_version bigint,\n deployment_data clob(4096),\n release_name varchar(255),\n release_version integer,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_INFO_TABLE |
"create table skipper_info (\n id bigint not null,\n object_version bigint,\n deleted timestamp,\n description varchar(255),\n first_deployed timestamp,\n last_deployed timestamp,\n status_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_MANIFEST_TABLE |
"create table skipper_manifest (\n id bigint not null,\n object_version bigint,\n data clob(65536),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_FILE_TABLE |
"create table skipper_package_file (\n id bigint not null,\n package_bytes blob(1048576),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_METADATA_TABLE |
"create table skipper_package_metadata (\n id bigint not null,\n object_version bigint,\n api_version varchar(255),\n description clob(65536),\n display_name varchar(255),\n icon_url clob(16384),\n kind varchar(255),\n maintainer varchar(255),\n name varchar(255),\n origin varchar(255),\n package_home_url clob(16384),\n package_source_url clob(16384),\n repository_id bigint,\n repository_name varchar(255),\n sha256 varchar(255),\n tags clob(16384),\n version varchar(255),\n packagefile_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_RELEASE_TABLE |
"create table skipper_release (\n id bigint not null,\n object_version bigint,\n config_values_string clob(16384),\n name varchar(255),\n package_metadata_id bigint,\n pkg_json_string clob(65536),\n platform_name varchar(255),\n repository_id bigint,\n version integer not null,\n info_id bigint,\n manifest_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_REPOSITORY_TABLE |
"create table skipper_repository (\n id bigint not null,\n object_version bigint,\n description varchar(255),\n local smallint,\n name varchar(255),\n repo_order integer,\n source_url clob(16384),\n url clob(16384),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_STATUS_TABLE |
"create table skipper_status (\n id bigint not null,\n platform_status clob(4096),\n status_code varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_ACTION_TABLE |
"create table action (\n id bigint not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_DEFERRED_EVENTS_TABLE |
"create table deferred_events (\n jpa_repository_state_id bigint not null,\n deferred_events varchar(255)\n)" |
public static final String |
CREATE_STATEMACHINE_GUARD_TABLE |
"create table guard (\n id bigint not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_ENTRY_ACTIONS_TABLE |
"create table state_entry_actions (\n jpa_repository_state_id bigint not null,\n entry_actions_id bigint not null,\n primary key (jpa_repository_state_id, entry_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_EXIT_ACTIONS_TABLE |
"create table state_exit_actions (\n jpa_repository_state_id bigint not null,\n exit_actions_id bigint not null,\n primary key (jpa_repository_state_id, exit_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_MACHINE_TABLE |
"create table state_machine (\n machine_id varchar(255) not null,\n state varchar(255),\n state_machine_context blob(1048576),\n primary key (machine_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_STATE_ACTIONS_TABLE |
"create table state_state_actions (\n jpa_repository_state_id bigint not null,\n state_actions_id bigint not null,\n primary key (jpa_repository_state_id, state_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_TABLE |
"create table state (\n id bigint not null,\n initial_state smallint not null,\n kind integer,\n machine_id varchar(255),\n region varchar(255),\n state varchar(255),\n submachine_id varchar(255),\n initial_action_id bigint,\n parent_state_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_ACTIONS_TABLE |
"create table transition_actions (\n jpa_repository_transition_id bigint not null,\n actions_id bigint not null,\n primary key (jpa_repository_transition_id, actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_TABLE |
"create table transition (\n id bigint not null,\n event varchar(255),\n kind integer,\n machine_id varchar(255),\n guard_id bigint,\n source_id bigint,\n target_id bigint,\n primary key (id)\n)" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
ADD_DEFERRED_EVENTS_FK_STATE_DEFERRED_EVENTS_CONSTRAINT |
"alter table deferred_events\n add constraint fk_state_deferred_events\n foreign key (jpa_repository_state_id)\n references state (id)" |
public static final String |
ADD_SKIPPER_INFO_FK_INFO_STATUS_CONSTRAINT |
"alter table skipper_info\n add constraint fk_info_status\n foreign key (status_id)\n references skipper_status (id)" |
public static final String |
ADD_SKIPPER_PACKAGE_METADATA_FK_PACKAGE_METADATA_PFILE_CONSTRAINT |
"alter table skipper_package_metadata\n add constraint fk_package_metadata_pfile\n foreign key (packagefile_id)\n references skipper_package_file (id)" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_INFO_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_info\n foreign key (info_id)\n references skipper_info (id)" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_MANIFEST_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_manifest\n foreign key (manifest_id)\n references skipper_manifest (id)" |
public static final String |
ADD_SKIPPER_REPOSITORY_UK_REPOSITORY_CONSTRAINT |
"alter table skipper_repository\n add constraint uk_repository unique (name)" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_A_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_a\n foreign key (entry_actions_id)\n references action (id)" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_S_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_s\n foreign key (jpa_repository_state_id)\n references state (id)" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_A_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_a\n foreign key (exit_actions_id)\n references action (id)" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_S_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_s\n foreign key (jpa_repository_state_id)\n references state (id)" |
public static final String |
ADD_STATE_FK_STATE_INITIAL_ACTION_CONSTRAINT |
"alter table state\n add constraint fk_state_initial_action\n foreign key (initial_action_id)\n references action (id)" |
public static final String |
ADD_STATE_FK_STATE_PARENT_STATE_CONSTRAINT |
"alter table state\n add constraint fk_state_parent_state\n foreign key (parent_state_id)\n references state (id)" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_A_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_a\n foreign key (state_actions_id)\n references action (id)" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_S_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_s\n foreign key (jpa_repository_state_id)\n references state (id)" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_A_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_a\n foreign key (actions_id)\n references action (id)" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_T_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_t\n foreign key (jpa_repository_transition_id)\n references transition (id)" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_GUARD_CONSTRAINT |
"alter table transition\n add constraint fk_transition_guard\n foreign key (guard_id)\n references guard (id)" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_SOURCE_CONSTRAINT |
"alter table transition\n add constraint fk_transition_source\n foreign key (source_id)\n references state (id)" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_TARGET_CONSTRAINT |
"alter table transition\n add constraint fk_transition_target\n foreign key (target_id)\n references state (id)" |
public static final String |
CREATE_HIBERNATE_SEQUENCE_TABLE |
"create table if not exists hibernate_sequence (\n next_val bigint\n)" |
public static final String |
CREATE_INX_PKG_NAME_INDEX |
"create index idx_pkg_name on skipper_package_metadata (name)" |
public static final String |
CREATE_INX_REL_NAME_INDEX |
"create index idx_rel_name on skipper_release (name)" |
public static final String |
CREATE_INX_REPO_NAME_INDEX |
"create index idx_repo_name on skipper_repository (name)" |
public static final String |
CREATE_SKIPPER_APP_DEPLOYER_DATA_TABLE |
"create table skipper_app_deployer_data (\n id bigint not null,\n object_version bigint,\n deployment_data longtext,\n release_name varchar(255),\n release_version integer,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_INFO_TABLE |
"create table skipper_info (\n id bigint not null,\n object_version bigint,\n deleted datetime,\n description varchar(255),\n first_deployed datetime,\n last_deployed datetime,\n status_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_MANIFEST_TABLE |
"create table skipper_manifest (\n id bigint not null,\n object_version bigint,\n data longtext,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_FILE_TABLE |
"create table skipper_package_file (\n id bigint not null,\n package_bytes longblob,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_METADATA_TABLE |
"create table skipper_package_metadata (\n id bigint not null,\n object_version bigint,\n api_version varchar(255),\n description longtext,\n display_name varchar(255),\n icon_url longtext,\n kind varchar(255),\n maintainer varchar(255),\n name varchar(255),\n origin varchar(255),\n package_home_url longtext,\n package_source_url longtext,\n repository_id bigint,\n repository_name varchar(255),\n sha256 varchar(255),\n tags longtext,\n version varchar(255),\n packagefile_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_RELEASE_TABLE |
"create table skipper_release (\n id bigint not null,\n object_version bigint,\n config_values_string longtext,\n name varchar(255),\n package_metadata_id bigint,\n pkg_json_string longtext,\n platform_name varchar(255),\n repository_id bigint,\n version integer not null,\n info_id bigint,\n manifest_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_REPOSITORY_TABLE |
"create table skipper_repository (\n id bigint not null,\n object_version bigint,\n description varchar(255),\n local bit,\n name varchar(255),\n repo_order integer,\n source_url longtext,\n url longtext,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_STATUS_TABLE |
"create table skipper_status (\n id bigint not null,\n platform_status longtext,\n status_code varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_ACTION_TABLE |
"create table action (\n id bigint not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_DEFERRED_EVENTS_TABLE |
"create table deferred_events (\n jpa_repository_state_id bigint not null,\n deferred_events varchar(255)\n)" |
public static final String |
CREATE_STATEMACHINE_GUARD_TABLE |
"create table guard (\n id bigint not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_ENTRY_ACTIONS_TABLE |
"create table state_entry_actions (\n jpa_repository_state_id bigint not null,\n entry_actions_id bigint not null,\n primary key (jpa_repository_state_id, entry_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_EXIT_ACTIONS_TABLE |
"create table state_exit_actions (\n jpa_repository_state_id bigint not null,\n exit_actions_id bigint not null,\n primary key (jpa_repository_state_id, exit_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_MACHINE_TABLE |
"create table state_machine (\n machine_id varchar(255) not null,\n state varchar(255),\n state_machine_context longblob,\n primary key (machine_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_STATE_ACTIONS_TABLE |
"create table state_state_actions (\n jpa_repository_state_id bigint not null,\n state_actions_id bigint not null,\n primary key (jpa_repository_state_id, state_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_TABLE |
"create table state (\n id bigint not null,\n initial_state bit not null,\n kind integer,\n machine_id varchar(255),\n region varchar(255),\n state varchar(255),\n submachine_id varchar(255),\n initial_action_id bigint,\n parent_state_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_ACTIONS_TABLE |
"create table transition_actions (\n jpa_repository_transition_id bigint not null,\n actions_id bigint not null,\n primary key (jpa_repository_transition_id, actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_TABLE |
"create table transition (\n id bigint not null,\n event varchar(255),\n kind integer,\n machine_id varchar(255),\n guard_id bigint,\n source_id bigint,\n target_id bigint,\n primary key (id)\n)" |
public static final String |
INSERT_HIBERNATE_SEQUENCE_TABLE |
"insert into hibernate_sequence (next_val)\n select * from (select 1 as next_val) as temp\n where not exists(select * from hibernate_sequence)" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
ADD_DEFERRED_EVENTS_FK_STATE_DEFERRED_EVENTS_CONSTRAINT |
"alter table deferred_events\n add constraint fk_state_deferred_events\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_SKIPPER_INFO_FK_INFO_STATUS_CONSTRAINT |
"alter table skipper_info\n add constraint fk_info_status\n foreign key (status_id)\n references skipper_status" |
public static final String |
ADD_SKIPPER_PACKAGE_METADATA_FK_PACKAGE_METADATA_PFILE_CONSTRAINT |
"alter table skipper_package_metadata\n add constraint fk_package_metadata_pfile\n foreign key (packagefile_id)\n references skipper_package_file" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_INFO_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_info\n foreign key (info_id)\n references skipper_info" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_MANIFEST_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_manifest\n foreign key (manifest_id)\n references skipper_manifest" |
public static final String |
ADD_SKIPPER_REPOSITORY_UK_REPOSITORY_CONSTRAINT |
"alter table skipper_repository\n add constraint uk_repository unique (name)" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_A_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_a\n foreign key (entry_actions_id)\n references action" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_S_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_A_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_a\n foreign key (exit_actions_id)\n references action" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_S_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_FK_STATE_INITIAL_ACTION_CONSTRAINT |
"alter table state\n add constraint fk_state_initial_action\n foreign key (initial_action_id)\n references action" |
public static final String |
ADD_STATE_FK_STATE_PARENT_STATE_CONSTRAINT |
"alter table state\n add constraint fk_state_parent_state\n foreign key (parent_state_id)\n references state" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_A_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_a\n foreign key (state_actions_id)\n references action" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_S_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_A_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_a\n foreign key (actions_id)\n references action" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_T_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_t\n foreign key (jpa_repository_transition_id)\n references transition" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_GUARD_CONSTRAINT |
"alter table transition\n add constraint fk_transition_guard\n foreign key (guard_id)\n references guard" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_SOURCE_CONSTRAINT |
"alter table transition\n add constraint fk_transition_source\n foreign key (source_id)\n references state" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_TARGET_CONSTRAINT |
"alter table transition\n add constraint fk_transition_target\n foreign key (target_id)\n references state" |
public static final String |
CREATE_INX_PKG_NAME_INDEX |
"create index idx_pkg_name on skipper_package_metadata (name)" |
public static final String |
CREATE_INX_REL_NAME_INDEX |
"create index idx_rel_name on skipper_release (name)" |
public static final String |
CREATE_INX_REPO_NAME_INDEX |
"create index idx_repo_name on skipper_repository (name)" |
public static final String |
CREATE_SKIPPER_APP_DEPLOYER_DATA_TABLE |
"create table skipper_app_deployer_data (\n id number(19,0) not null,\n object_version number(19,0),\n deployment_data clob,\n release_name varchar2(255 char),\n release_version number(10,0),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_INFO_TABLE |
"create table skipper_info (\n id number(19,0) not null,\n object_version number(19,0),\n deleted timestamp,\n description varchar2(255 char),\n first_deployed timestamp,\n last_deployed timestamp,\n status_id number(19,0),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_MANIFEST_TABLE |
"create table skipper_manifest (\n id number(19,0) not null,\n object_version number(19,0),\n data clob,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_FILE_TABLE |
"create table skipper_package_file (\n id number(19,0) not null,\n package_bytes blob,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_METADATA_TABLE |
"create table skipper_package_metadata (\n id number(19,0) not null,\n object_version number(19,0),\n api_version varchar2(255 char),\n description clob,\n display_name varchar2(255 char),\n icon_url clob,\n kind varchar2(255 char),\n maintainer varchar2(255 char),\n name varchar2(255 char),\n origin varchar2(255 char),\n package_home_url clob,\n package_source_url clob,\n repository_id number(19,0),\n repository_name varchar2(255 char),\n sha256 varchar2(255 char),\n tags clob,\n version varchar2(255 char),\n packagefile_id number(19,0),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_RELEASE_TABLE |
"create table skipper_release (\n id number(19,0) not null,\n object_version number(19,0),\n config_values_string clob,\n name varchar2(255 char),\n package_metadata_id number(19,0),\n pkg_json_string clob,\n platform_name varchar2(255 char),\n repository_id number(19,0),\n version number(10,0) not null,\n info_id number(19,0),\n manifest_id number(19,0),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_REPOSITORY_TABLE |
"create table skipper_repository (\n id number(19,0) not null,\n object_version number(19,0),\n description varchar2(255 char),\n local number(1,0),\n name varchar2(255 char),\n repo_order number(10,0),\n source_url clob,\n url clob,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_STATUS_TABLE |
"create table skipper_status (\n id number(19,0) not null,\n platform_status clob,\n status_code varchar2(255 char),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_ACTION_TABLE |
"create table action (\n id number(19,0) not null,\n name varchar2(255 char),\n spel varchar2(255 char),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_DEFERRED_EVENTS_TABLE |
"create table deferred_events (\n jpa_repository_state_id number(19,0) not null,\n deferred_events varchar2(255 char)\n)" |
public static final String |
CREATE_STATEMACHINE_GUARD_TABLE |
"create table guard (\n id number(19,0) not null,\n name varchar2(255 char),\n spel varchar2(255 char),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_ENTRY_ACTIONS_TABLE |
"create table state_entry_actions (\n jpa_repository_state_id number(19,0) not null,\n entry_actions_id number(19,0) not null,\n primary key (jpa_repository_state_id, entry_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_EXIT_ACTIONS_TABLE |
"create table state_exit_actions (\n jpa_repository_state_id number(19,0) not null,\n exit_actions_id number(19,0) not null,\n primary key (jpa_repository_state_id, exit_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_MACHINE_TABLE |
"create table state_machine (\n machine_id varchar2(255 char) not null,\n state varchar2(255 char),\n state_machine_context blob,\n primary key (machine_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_STATE_ACTIONS_TABLE |
"create table state_state_actions (\n jpa_repository_state_id number(19,0) not null,\n state_actions_id number(19,0) not null,\n primary key (jpa_repository_state_id, state_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_TABLE |
"create table state (\n id number(19,0) not null,\n initial_state number(1,0) not null,\n kind number(10,0),\n machine_id varchar2(255 char),\n region varchar2(255 char),\n state varchar2(255 char),\n submachine_id varchar2(255 char),\n initial_action_id number(19,0),\n parent_state_id number(19,0),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_ACTIONS_TABLE |
"create table transition_actions (\n jpa_repository_transition_id number(19,0) not null,\n actions_id number(19,0) not null,\n primary key (jpa_repository_transition_id, actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_TABLE |
"create table transition (\n id number(19,0) not null,\n event varchar2(255 char),\n kind number(10,0),\n machine_id varchar2(255 char),\n guard_id number(19,0),\n source_id number(19,0),\n target_id number(19,0),\n primary key (id)\n)" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
ADD_DEFERRED_EVENTS_FK_STATE_DEFERRED_EVENTS_CONSTRAINT |
"alter table deferred_events\n add constraint fk_state_deferred_events\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_SKIPPER_INFO_FK_INFO_STATUS_CONSTRAINT |
"alter table skipper_info\n add constraint fk_info_status\n foreign key (status_id)\n references skipper_status" |
public static final String |
ADD_SKIPPER_PACKAGE_METADATA_FK_PACKAGE_METADATA_PFILE_CONSTRAINT |
"alter table skipper_package_metadata\n add constraint fk_package_metadata_pfile\n foreign key (packagefile_id)\n references skipper_package_file" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_INFO_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_info\n foreign key (info_id)\n references skipper_info" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_MANIFEST_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_manifest\n foreign key (manifest_id)\n references skipper_manifest" |
public static final String |
ADD_SKIPPER_REPOSITORY_UK_REPOSITORY_CONSTRAINT |
"alter table skipper_repository\n add constraint uk_repository unique (name)" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_A_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_a\n foreign key (entry_actions_id)\n references action" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_S_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_A_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_a\n foreign key (exit_actions_id)\n references action" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_S_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_FK_STATE_INITIAL_ACTION_CONSTRAINT |
"alter table state\n add constraint fk_state_initial_action\n foreign key (initial_action_id)\n references action" |
public static final String |
ADD_STATE_FK_STATE_PARENT_STATE_CONSTRAINT |
"alter table state\n add constraint fk_state_parent_state\n foreign key (parent_state_id)\n references state" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_A_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_a\n foreign key (state_actions_id)\n references action" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_S_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_A_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_a\n foreign key (actions_id)\n references action" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_T_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_t\n foreign key (jpa_repository_transition_id)\n references transition" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_GUARD_CONSTRAINT |
"alter table transition\n add constraint fk_transition_guard\n foreign key (guard_id)\n references guard" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_SOURCE_CONSTRAINT |
"alter table transition\n add constraint fk_transition_source\n foreign key (source_id)\n references state" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_TARGET_CONSTRAINT |
"alter table transition\n add constraint fk_transition_target\n foreign key (target_id)\n references state" |
public static final String |
CREATE_INX_PKG_NAME_INDEX |
"create index idx_pkg_name on skipper_package_metadata (name)" |
public static final String |
CREATE_INX_REL_NAME_INDEX |
"create index idx_rel_name on skipper_release (name)" |
public static final String |
CREATE_INX_REPO_NAME_INDEX |
"create index idx_repo_name on skipper_repository (name)" |
public static final String |
CREATE_SKIPPER_APP_DEPLOYER_DATA_TABLE |
"create table skipper_app_deployer_data (\n id int8 not null,\n object_version int8,\n deployment_data text,\n release_name varchar(255),\n release_version int4,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_INFO_TABLE |
"create table skipper_info (\n id int8 not null,\n object_version int8,\n deleted timestamp,\n description varchar(255),\n first_deployed timestamp,\n last_deployed timestamp,\n status_id int8,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_MANIFEST_TABLE |
"create table skipper_manifest (\n id int8 not null,\n object_version int8,\n data text,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_FILE_TABLE |
"create table skipper_package_file (\n id int8 not null,\n package_bytes oid,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_METADATA_TABLE |
"create table skipper_package_metadata (\n id int8 not null,\n object_version int8,\n api_version varchar(255),\n description text,\n display_name varchar(255),\n icon_url text,\n kind varchar(255),\n maintainer varchar(255),\n name varchar(255),\n origin varchar(255),\n package_home_url text,\n package_source_url text,\n repository_id int8,\n repository_name varchar(255),\n sha256 varchar(255),\n tags text,\n version varchar(255),\n packagefile_id int8,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_RELEASE_TABLE |
"create table skipper_release (\n id int8 not null,\n object_version int8,\n config_values_string text,\n name varchar(255),\n package_metadata_id int8,\n pkg_json_string text,\n platform_name varchar(255),\n repository_id int8,\n version int4 not null,\n info_id int8,\n manifest_id int8,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_REPOSITORY_TABLE |
"create table skipper_repository (\n id int8 not null,\n object_version int8,\n description varchar(255),\n local boolean,\n name varchar(255),\n repo_order int4,\n source_url text,\n url text,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_STATUS_TABLE |
"create table skipper_status (\n id int8 not null,\n platform_status text,\n status_code varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_ACTION_TABLE |
"create table action (\n id int8 not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_DEFERRED_EVENTS_TABLE |
"create table deferred_events (\n jpa_repository_state_id int8 not null,\n deferred_events varchar(255)\n)" |
public static final String |
CREATE_STATEMACHINE_GUARD_TABLE |
"create table guard (\n id int8 not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_ENTRY_ACTIONS_TABLE |
"create table state_entry_actions (\n jpa_repository_state_id int8 not null,\n entry_actions_id int8 not null,\n primary key (jpa_repository_state_id, entry_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_EXIT_ACTIONS_TABLE |
"create table state_exit_actions (\n jpa_repository_state_id int8 not null,\n exit_actions_id int8 not null,\n primary key (jpa_repository_state_id, exit_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_MACHINE_TABLE |
"create table state_machine (\n machine_id varchar(255) not null,\n state varchar(255),\n state_machine_context oid,\n primary key (machine_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_STATE_ACTIONS_TABLE |
"create table state_state_actions (\n jpa_repository_state_id int8 not null,\n state_actions_id int8 not null,\n primary key (jpa_repository_state_id, state_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_TABLE |
"create table state (\n id int8 not null,\n initial_state boolean not null,\n kind int4,\n machine_id varchar(255),\n region varchar(255),\n state varchar(255),\n submachine_id varchar(255),\n initial_action_id int8,\n parent_state_id int8,\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_ACTIONS_TABLE |
"create table transition_actions (\n jpa_repository_transition_id int8 not null,\n actions_id int8 not null,\n primary key (jpa_repository_transition_id, actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_TABLE |
"create table transition (\n id int8 not null,\n event varchar(255),\n kind int4,\n machine_id varchar(255),\n guard_id int8,\n source_id int8,\n target_id int8,\n primary key (id)\n)" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
ADD_DEFERRED_EVENTS_FK_STATE_DEFERRED_EVENTS_CONSTRAINT |
"alter table deferred_events\n add constraint fk_state_deferred_events\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_SKIPPER_INFO_FK_INFO_STATUS_CONSTRAINT |
"alter table skipper_info\n add constraint fk_info_status\n foreign key (status_id)\n references skipper_status" |
public static final String |
ADD_SKIPPER_PACKAGE_METADATA_FK_PACKAGE_METADATA_PFILE_CONSTRAINT |
"alter table skipper_package_metadata\n add constraint fk_package_metadata_pfile\n foreign key (packagefile_id)\n references skipper_package_file" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_INFO_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_info\n foreign key (info_id)\n references skipper_info" |
public static final String |
ADD_SKIPPER_RELEASE_FK_RELEASE_MANIFEST_CONSTRAINT |
"alter table skipper_release\n add constraint fk_release_manifest\n foreign key (manifest_id)\n references skipper_manifest" |
public static final String |
ADD_SKIPPER_REPOSITORY_UK_REPOSITORY_CONSTRAINT |
"alter table skipper_repository\n add constraint uk_repository unique (name)" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_A_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_a\n foreign key (entry_actions_id)\n references action" |
public static final String |
ADD_STATE_ENTRY_ACTIONS_FK_STATE_ENTRY_ACTIONS_S_CONSTRAINT |
"alter table state_entry_actions\n add constraint fk_state_entry_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_A_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_a\n foreign key (exit_actions_id)\n references action" |
public static final String |
ADD_STATE_EXIT_ACTIONS_FK_STATE_EXIT_ACTIONS_S_CONSTRAINT |
"alter table state_exit_actions\n add constraint fk_state_exit_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_STATE_FK_STATE_INITIAL_ACTION_CONSTRAINT |
"alter table state\n add constraint fk_state_initial_action\n foreign key (initial_action_id)\n references action" |
public static final String |
ADD_STATE_FK_STATE_PARENT_STATE_CONSTRAINT |
"alter table state\n add constraint fk_state_parent_state\n foreign key (parent_state_id)\n references state" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_A_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_a\n foreign key (state_actions_id)\n references action" |
public static final String |
ADD_STATE_STATE_ACTIONS_FK_STATE_STATE_ACTIONS_S_CONSTRAINT |
"alter table state_state_actions\n add constraint fk_state_state_actions_s\n foreign key (jpa_repository_state_id)\n references state" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_A_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_a\n foreign key (actions_id)\n references action" |
public static final String |
ADD_TRANSITION_ACTIONS_FK_TRANSITION_ACTIONS_T_CONSTRAINT |
"alter table transition_actions\n add constraint fk_transition_actions_t\n foreign key (jpa_repository_transition_id)\n references transition" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_GUARD_CONSTRAINT |
"alter table transition\n add constraint fk_transition_guard\n foreign key (guard_id)\n references guard" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_SOURCE_CONSTRAINT |
"alter table transition\n add constraint fk_transition_source\n foreign key (source_id)\n references state" |
public static final String |
ADD_TRANSITION_FK_TRANSITION_TARGET_CONSTRAINT |
"alter table transition\n add constraint fk_transition_target\n foreign key (target_id)\n references state" |
public static final String |
CREATE_INX_PKG_NAME_INDEX |
"create index idx_pkg_name on skipper_package_metadata (name)" |
public static final String |
CREATE_INX_REL_NAME_INDEX |
"create index idx_rel_name on skipper_release (name)" |
public static final String |
CREATE_INX_REPO_NAME_INDEX |
"create index idx_repo_name on skipper_repository (name)" |
public static final String |
CREATE_SKIPPER_APP_DEPLOYER_DATA_TABLE |
"create table skipper_app_deployer_data (\n id bigint not null,\n object_version bigint,\n deployment_data varchar(MAX),\n release_name varchar(255),\n release_version int,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_INFO_TABLE |
"create table skipper_info (\n id bigint not null,\n object_version bigint,\n deleted datetime2,\n description varchar(255),\n first_deployed datetime2,\n last_deployed datetime2,\n status_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_MANIFEST_TABLE |
"create table skipper_manifest (\n id bigint not null,\n object_version bigint,\n data varchar(MAX),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_FILE_TABLE |
"create table skipper_package_file (\n id bigint not null,\n package_bytes varbinary(MAX),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_PACKAGE_METADATA_TABLE |
"create table skipper_package_metadata (\n id bigint not null,\n object_version bigint,\n api_version varchar(255),\n description varchar(MAX),\n display_name varchar(255),\n icon_url varchar(MAX),\n kind varchar(255),\n maintainer varchar(255),\n name varchar(255),\n origin varchar(255),\n package_home_url varchar(MAX),\n package_source_url varchar(MAX),\n repository_id bigint,\n repository_name varchar(255),\n sha256 varchar(255),\n tags varchar(MAX),\n version varchar(255),\n packagefile_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_RELEASE_TABLE |
"create table skipper_release (\n id bigint not null,\n object_version bigint,\n config_values_string varchar(MAX),\n name varchar(255),\n package_metadata_id bigint,\n pkg_json_string varchar(MAX),\n platform_name varchar(255),\n repository_id bigint,\n version int not null,\n info_id bigint,\n manifest_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_REPOSITORY_TABLE |
"create table skipper_repository (\n id bigint not null,\n object_version bigint,\n description varchar(255),\n local bit,\n name varchar(255),\n repo_order int,\n source_url varchar(MAX),\n url varchar(MAX),\n primary key (id)\n)" |
public static final String |
CREATE_SKIPPER_STATUS_TABLE |
"create table skipper_status (\n id bigint not null,\n platform_status varchar(MAX),\n status_code varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_ACTION_TABLE |
"create table action (\n id bigint not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_DEFERRED_EVENTS_TABLE |
"create table deferred_events (\n jpa_repository_state_id bigint not null,\n deferred_events varchar(255)\n)" |
public static final String |
CREATE_STATEMACHINE_GUARD_TABLE |
"create table guard (\n id bigint not null,\n name varchar(255),\n spel varchar(255),\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_ENTRY_ACTIONS_TABLE |
"create table state_entry_actions (\n jpa_repository_state_id bigint not null,\n entry_actions_id bigint not null,\n primary key (jpa_repository_state_id, entry_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_EXIT_ACTIONS_TABLE |
"create table state_exit_actions (\n jpa_repository_state_id bigint not null,\n exit_actions_id bigint not null,\n primary key (jpa_repository_state_id, exit_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_MACHINE_TABLE |
"create table state_machine (\n machine_id varchar(255) not null,\n state varchar(255),\n state_machine_context varbinary(MAX),\n primary key (machine_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_STATE_ACTIONS_TABLE |
"create table state_state_actions (\n jpa_repository_state_id bigint not null,\n state_actions_id bigint not null,\n primary key (jpa_repository_state_id, state_actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_STATE_TABLE |
"create table state (\n id bigint not null,\n initial_state bit not null,\n kind int,\n machine_id varchar(255),\n region varchar(255),\n state varchar(255),\n submachine_id varchar(255),\n initial_action_id bigint,\n parent_state_id bigint,\n primary key (id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_ACTIONS_TABLE |
"create table transition_actions (\n jpa_repository_transition_id bigint not null,\n actions_id bigint not null,\n primary key (jpa_repository_transition_id, actions_id)\n)" |
public static final String |
CREATE_STATEMACHINE_TRANSITION_TABLE |
"create table transition (\n id bigint not null,\n event varchar(255),\n kind int,\n machine_id varchar(255),\n guard_id bigint,\n source_id bigint,\n target_id bigint,\n primary key (id)\n)" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
SKIPPER_APPLICATION_NAME_ATTRIBUTE |
"skipper.application.name" |
public static final String |
SKIPPER_RELEASE_NAME_ATTRIBUTE |
"skipper.release.name" |
public static final String |
SKIPPER_RELEASE_VERSION_ATTRIBUTE |
"skipper.release.version" |
public static final String |
SPRING_CLOUD_DEPLOYER_COUNT |
"spring.cloud.deployer.count" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
STATEMACHINE_FACTORY_BEAN_NAME |
"skipperStateMachineFactory" |
Modifier and Type | Constant Field | Value |
---|---|---|
public static final String |
INSTALL_ID |
"INSTALL_ID" |
public static final String |
INSTALL_PROPERTIES |
"INSTALL_PROPERTIES" |
public static final String |
INSTALL_REQUEST |
"INSTALL_REQUEST" |
public static final String |
PACKAGE_METADATA |
"PACKAGE_METADATA" |
public static final String |
RELEASE_DELETE_PROPERTIES |
"RELEASE_DELETE_PROPERTIES" |
public static final String |
RELEASE_NAME |
"RELEASE_NAME" |
public static final String |
ROLLBACK_REQUEST |
"ROLLBACK_REQUEST" |
public static final String |
ROLLBACK_VERSION |
"ROLLBACK_VERSION" |
public static final String |
SCALE_REQUEST |
"SCALE_REQUEST" |
public static final String |
UPGRADE_REQUEST |
"UPGRADE_REQUEST" |
public static final String |
UPGRADE_TIMEOUT |
"UPGRADE_TIMEOUT" |
public static final String |
VERSION |
"VERSION" |
Copyright © 2020 Pivotal Software, Inc.. All rights reserved.