Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reset to previous commit
  • Loading branch information
Dermot Smyth authored and Dermot Smyth committed Mar 3, 2017
commit 655fbaf26b951ce000fdb63c75a7bb39763d48ab
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public abstract class SortOrderConstants {
public static Integer DEPLOY_EXTERNAL_SECURITY = 70;
public static Integer DEPLOY_PROTECTED_COLLECTIONS = 80;
public static Integer DEPLOY_MIMETYPES = 90;

public static Integer DEPLOY_TRIGGERS_DATABASE = 100;
public static Integer DEPLOY_SCHEMAS_DATABASE = 100;
public static Integer DEPLOY_CONTENT_DATABASES = 120;
Expand All @@ -24,6 +24,8 @@ public abstract class SortOrderConstants {
public static Integer UPDATE_REST_API_SERVERS = 250;
public static Integer DEPLOY_OTHER_SERVERS = 300;

public static Integer MODIFY_LOCAL_CLUSTER = 350;

// Module code may depend on schemas, but not vice-versa.
public static Integer LOAD_SCHEMAS = 350;

Expand All @@ -35,11 +37,7 @@ public abstract class SortOrderConstants {
public static Integer DEPLOY_AMPS = 450;

public static Integer DEPLOY_TRIGGERS = 700;

public static Integer DEPLOY_TEMPORAL_AXIS = 750;
public static Integer DEPLOY_TEMPORAL_COLLECTIONS = 751;
public static Integer DEPLOY_TEMPORAL_COLLECTIONS_LSQT = 752;


public static Integer DEPLOY_SCHEDULED_TASKS = 800;

public static Integer DEPLOY_DEFAULT_PIPELINES = 900;
Expand All @@ -53,16 +51,16 @@ public abstract class SortOrderConstants {

public static Integer DEPLOY_FLEXREP_CONFIGS = 1000;
public static Integer DEPLOY_FLEXREP_TARGETS = 1010;

public static Integer DEPLOY_SQL_VIEWS = 1100;

public static Integer DEPLOY_FOREST_REPLICAS = 1200;

// Undo constants
public static Integer DELETE_GROUPS = 10000;

public static Integer DELETE_MIMETYPES = 9500;

public static Integer DELETE_USERS = 9000;
public static Integer DELETE_CERTIFICATE_TEMPLATES = 9010;
public static Integer DELETE_CERTIFICATE_AUTHORITIES = 9020;
Expand All @@ -79,7 +77,7 @@ public abstract class SortOrderConstants {
* need to make sure the replicas are deleted first.
*/
public static Integer DELETE_FOREST_REPLICAS = 8000;

public static Integer DELETE_CONTENT_DATABASES = 8100;
public static Integer DELETE_OTHER_DATABASES = 8120;
public static Integer DELETE_TRIGGERS_DATABASE = 8140;
Expand All @@ -88,5 +86,5 @@ public abstract class SortOrderConstants {
public static Integer DELETE_REST_API_SERVERS = 7000;
public static Integer DELETE_OTHER_SERVERS = 7010;

public static Integer DELETE_SCHEDULED_TASKS = 1000;
public static Integer DELETE_SCHEDULED_TASKS = 1000;
}