Package overit.geocall.base.rs2.config
Class ConfigurationServiceV2
java.lang.Object
overit.geocall.base.rs2.config.ConfigurationServiceV2
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetPublicConfigurations(List<String> names) getSystemConfigurations(List<String> names) getTenantConfigurations(List<String> names) getTenantConstraintsConfigurations(long tenantId) org.springframework.http.ResponseEntity<Void> patchSystemEditableConfigurations(List<String> filters, String body) org.springframework.http.ResponseEntity<Void> patchTenantConstraintsConfigurations(List<String> filters, long tenantId, String body) org.springframework.http.ResponseEntity<Void> patchTenantEditableConfigurations(List<String> filters, String body) org.springframework.http.ResponseEntity<Void> org.springframework.http.ResponseEntity<Void> putTenantConstraintsConfigurations(long tenantId, String body) org.springframework.http.ResponseEntity<Void>
-
Constructor Details
-
ConfigurationServiceV2
public ConfigurationServiceV2()
-
-
Method Details
-
getPublicConfigurations
-
getSystemConfigurations
-
getSystemEditableConfigurations
@GetMapping(path="system/editable", produces="text/plain") public String getSystemEditableConfigurations() throws DAException, DAValidateException- Throws:
DAExceptionDAValidateException
-
putSystemEditableConfigurations
@PutMapping(path="system/editable", consumes="text/plain", produces="application/json") public org.springframework.http.ResponseEntity<Void> putSystemEditableConfigurations(@RequestBody(required=false) String body) throws DAException, DAValidateException - Throws:
DAExceptionDAValidateException
-
patchSystemEditableConfigurations
@PatchMapping(path="system/editable", consumes="text/plain", produces="application/json") public org.springframework.http.ResponseEntity<Void> patchSystemEditableConfigurations(@RequestParam(name="deletionFilter",required=false,defaultValue="") List<String> filters, @RequestBody(required=false) String body) throws DAException, DAValidateException - Throws:
DAExceptionDAValidateException
-
getTenantConfigurations
-
getTenantEditableConfigurations
@GetMapping(path="tenant/editable", produces="text/plain") public String getTenantEditableConfigurations() throws DAException, DAValidateException- Throws:
DAExceptionDAValidateException
-
putTenantEditableConfigurations
@PutMapping(path="tenant/editable", consumes="text/plain", produces="application/json") public org.springframework.http.ResponseEntity<Void> putTenantEditableConfigurations(@RequestBody(required=false) String body) throws DAException, DAValidateException - Throws:
DAExceptionDAValidateException
-
patchTenantEditableConfigurations
@PatchMapping(path="tenant/editable", consumes="text/plain", produces="application/json") public org.springframework.http.ResponseEntity<Void> patchTenantEditableConfigurations(@RequestParam(name="deletionFilter",required=false,defaultValue="") List<String> filters, @RequestBody(required=false) String body) throws DAException, DAValidateException - Throws:
DAExceptionDAValidateException
-
getTenantConstraintsConfigurations
@GetMapping(path="tenant/{tenantId}/constraints", produces="text/plain") public String getTenantConstraintsConfigurations(@PathVariable("tenantId") long tenantId) throws DAException, DAValidateException - Throws:
DAExceptionDAValidateException
-
putTenantConstraintsConfigurations
@PutMapping(path="tenant/{tenantId}/constraints", consumes="text/plain", produces="application/json") public org.springframework.http.ResponseEntity<Void> putTenantConstraintsConfigurations(@PathVariable("tenantId") long tenantId, @RequestBody(required=false) String body) throws DAException, DAValidateException - Throws:
DAExceptionDAValidateException
-
patchTenantConstraintsConfigurations
@PatchMapping(path="tenant/{tenantId}/constraints", consumes="text/plain", produces="application/json") public org.springframework.http.ResponseEntity<Void> patchTenantConstraintsConfigurations(@RequestParam(name="deletionFilter",required=false,defaultValue="") List<String> filters, @PathVariable("tenantId") long tenantId, @RequestBody(required=false) String body) throws DAException, DAValidateException - Throws:
DAExceptionDAValidateException
-