[Project] Updated strolch-wc-inspector version

This commit is contained in:
Robert von Burg 2020-07-20 12:19:37 +02:00
parent 7b2a516b38
commit cd36ad75b7
2 changed files with 8 additions and 4 deletions

View File

@ -13,13 +13,17 @@ public enum Operation {
UPDATE(PRIVILEGE_UPDATE_PREFIX), // UPDATE(PRIVILEGE_UPDATE_PREFIX), //
REMOVE(PRIVILEGE_REMOVE_PREFIX); REMOVE(PRIVILEGE_REMOVE_PREFIX);
private String privilegePrefix; private final String privilegePrefix;
Operation(String privilegePrefix) {
this.privilegePrefix = privilegePrefix;
}
public String getPrivilegeName(StrolchRootElement element) { public String getPrivilegeName(StrolchRootElement element) {
return this.privilegePrefix + element.getObjectType(); return this.privilegePrefix + element.getObjectType();
} }
Operation(String privilegePrefix) { public String getPrivilegePrefix() {
this.privilegePrefix = privilegePrefix; return this.privilegePrefix;
} }
} }

View File

@ -8,7 +8,7 @@
"strolchjs": "4treesCH/strolchjs#^0.4.1", "strolchjs": "4treesCH/strolchjs#^0.4.1",
"strolch-wc-styles": "4treesCH/strolch-wc-styles#^0.3.0", "strolch-wc-styles": "4treesCH/strolch-wc-styles#^0.3.0",
"strolch-wc-auth": "4treesCH/strolch-wc-auth#^0.8.1", "strolch-wc-auth": "4treesCH/strolch-wc-auth#^0.8.1",
"strolch-wc-inspector": "4treesCH/strolch-wc-inspector#^0.19.8", "strolch-wc-inspector": "4treesCH/strolch-wc-inspector#^0.20.0",
"strolch-wc-localize-behavior": "4treesCH/strolch-wc-localize-behavior#^1.1.8", "strolch-wc-localize-behavior": "4treesCH/strolch-wc-localize-behavior#^1.1.8",
"strolch-wc-reports": "4treesCH/strolch-wc-reports#^0.2.10", "strolch-wc-reports": "4treesCH/strolch-wc-reports#^0.2.10",
"strolch-wc-paging": "4treesCH/strolch-wc-paging#^0.1.3", "strolch-wc-paging": "4treesCH/strolch-wc-paging#^0.1.3",