Class CapacitySummariesService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.roughplanning.rs1.capacity.CapacitySummariesService
@RestController
@RequestMapping("planning/workload-analysis/r1/workload-analyses/{workloadAnalysisId:[0-9]+}/capacity-summaries")
@Resource(logging=true)
public class CapacitySummariesService
extends PrivateService
Services to manage a
CapacitySummary object. - Since:
- 19.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<PageResponse<DTOCapacitySummary>> getCollection(Long roughPlanningId, Collection<String> fields, @Valid DTOCapacitySummaryFilter filter) Retrieves the requiredCapacitySummaryobject by calling theCapacitySummarySearchEventevent
-
Constructor Details
-
CapacitySummariesService
public CapacitySummariesService()
-
-
Method Details
-
getCollection
@GetMapping(produces="application/json") public org.springframework.http.ResponseEntity<PageResponse<DTOCapacitySummary>> getCollection(@PathVariable("workloadAnalysisId") Long roughPlanningId, @RequestParam(required=false,value="_fields") Collection<String> fields, @Valid @Valid DTOCapacitySummaryFilter filter) throws DAValidateException, DAException Retrieves the requiredCapacitySummaryobject by calling theCapacitySummarySearchEventevent- Parameters:
roughPlanningId- of the rough planning header- Returns:
- the response containing the loaded
DTOCapacitySummary - Throws:
DAValidateException- the DA validate exceptionDAException- the DA exception
-