2
2
3
3
public abstract class SortOrderConstants {
4
4
5
- public static Integer DEPLOY_GROUPS = 5 ;
6
-
7
- public static Integer DEPLOY_PRIVILEGES = 10 ;
8
- public static Integer DEPLOY_ROLES = 20 ;
9
- public static Integer DEPLOY_USERS = 30 ;
10
- public static Integer DEPLOY_CERTIFICATE_TEMPLATES = 50 ;
11
- public static Integer GENERATE_TEMPORARY_CERTIFICATE = 55 ;
12
- public static Integer DEPLOY_CERTIFICATE_AUTHORITIES = 60 ;
13
- public static Integer DEPLOY_EXTERNAL_SECURITY = 70 ;
14
- public static Integer DEPLOY_PROTECTED_COLLECTIONS = 80 ;
15
- public static Integer DEPLOY_MIMETYPES = 90 ;
16
- public static Integer DEPLOY_PROTECTED_PATHS = 95 ;
17
- public static Integer DEPLOY_QUERY_ROLESETS = 97 ;
18
-
5
+ public static Integer DEPLOY_PRIVILEGES = 5 ;
6
+ public static Integer DEPLOY_ROLES = 10 ;
7
+ public static Integer DEPLOY_USERS = 15 ;
8
+ public static Integer DEPLOY_CERTIFICATE_TEMPLATES = 20 ;
9
+ public static Integer GENERATE_TEMPORARY_CERTIFICATE = 25 ;
10
+ public static Integer DEPLOY_CERTIFICATE_AUTHORITIES = 30 ;
11
+ public static Integer DEPLOY_EXTERNAL_SECURITY = 35 ;
12
+ public static Integer DEPLOY_PROTECTED_COLLECTIONS = 40 ;
13
+ public static Integer DEPLOY_MIMETYPES = 45 ;
14
+ public static Integer DEPLOY_PROTECTED_PATHS = 50 ;
15
+ public static Integer DEPLOY_QUERY_ROLESETS = 55 ;
16
+
17
+ public static Integer DEPLOY_GROUPS = 90 ;
18
+
19
19
// Hosts need to be assigned to their group before databases are created.
20
20
// This is so that when forests are created based on the mlDatabaseGroups
21
21
// then the forests will be created on the correct hosts.
22
- public static Integer ASSIGN_HOSTS_TO_GROUPS = 98 ;
22
+ public static Integer ASSIGN_HOSTS_TO_GROUPS = 95 ;
23
23
24
24
public static Integer DEPLOY_TRIGGERS_DATABASE = 100 ;
25
25
public static Integer DEPLOY_SCHEMAS_DATABASE = 100 ;
@@ -69,7 +69,10 @@ public abstract class SortOrderConstants {
69
69
70
70
public static Integer DEPLOY_FOREST_REPLICAS = 1200 ;
71
71
72
- // Undo constants
72
+ public static Integer DELETE_MIMETYPES = 8500 ;
73
+
74
+ public static Integer UNASSIGN_HOSTS_FROM_GROUPS = 8590 ;
75
+ public static Integer DELETE_GROUPS = 8600 ;
73
76
74
77
public static Integer DELETE_USERS = 9000 ;
75
78
public static Integer DELETE_CERTIFICATE_TEMPLATES = 9010 ;
@@ -83,10 +86,6 @@ public abstract class SortOrderConstants {
83
86
// Protected paths reference roles
84
87
public static Integer DELETE_PROTECTED_PATHS = 9080 ;
85
88
86
- public static Integer DELETE_GROUPS = 8600 ;
87
- public static Integer UNASSIGN_HOSTS_FROM_GROUPS = 8590 ;
88
-
89
- public static Integer DELETE_MIMETYPES = 8500 ;
90
89
91
90
/*
92
91
* This executes before databases are deleted, as deleting databases normally deletes the primary forests, so we
0 commit comments