Class DataCollectionSheetScopeService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.core.datacollection.rs2.sheet.scope.DataCollectionSheetScopeService
@RestController("dataCollectionSheetScopeServiceOld")
@RequestMapping("datacollection/r2/sheets/scopes")
@Resource(logging=true)
@Deprecated(forRemoval=true,
since="22.0")
public class DataCollectionSheetScopeService
extends PrivateService
Deprecated, for removal: This API element is subject to removal in a future version.
Services to manage data collection sheet scopes.
- Since:
- 19.0
- GCApi:
- rest
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTODataCollectionSheetScope> Deprecated, for removal: This API element is subject to removal in a future version.Retrieve the required data collection sheet scope.org.springframework.http.ResponseEntity<PageResponse<DTODataCollectionSheetScope>> getCollection(@NotNull @Valid Page page, @Valid @NotNull DataCollectionSheetScopeSearchFilter filter) Deprecated, for removal: This API element is subject to removal in a future version.Retrieve the all stored data collection sheet scopes.
-
Constructor Details
-
DataCollectionSheetScopeService
public DataCollectionSheetScopeService()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
getCollection
@GetMapping(produces="application/json") public org.springframework.http.ResponseEntity<PageResponse<DTODataCollectionSheetScope>> getCollection(@RequestParam("page") @NotNull @Valid @NotNull @Valid Page page, @RequestParam("filter") @Valid @NotNull @Valid @NotNull DataCollectionSheetScopeSearchFilter filter) throws DAException, DAValidateException Deprecated, for removal: This API element is subject to removal in a future version.Retrieve the all stored data collection sheet scopes.DataCollectionSheetScopeSearchEvent- Parameters:
page- the required result pagefilter- the specifiedDataCollectionSheetScopeSearchFilter- Returns:
- the current result page
- Throws:
DAException- the DA exceptionDAValidateException- the DA validate exception
-
get
@GetMapping(value="{id:[0-9]+}", produces="application/json") public org.springframework.http.ResponseEntity<DTODataCollectionSheetScope> get(@PathVariable("id") Long id) throws DAException, DAValidateException Deprecated, for removal: This API element is subject to removal in a future version.Retrieve the required data collection sheet scope.DataCollectionSheetScopeLoadEvent- Parameters:
id- data collection sheet scope id- Returns:
- the data collection sheet scope
- Throws:
DAException- the DA exceptionDAValidateException- the DA validate exception
-