Class ExportCandidatesController
java.lang.Object
org.qubership.atp.mia.controllers.ExportCandidatesController
- All Implemented Interfaces:
CandidatesApi
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<ExportCandidateDto>> getCandidates(UUID projectId) GET /api/mia/project/{projectId}/candidates : getCandidates
-
Constructor Details
-
ExportCandidatesController
public ExportCandidatesController()
-
-
Method Details
-
getCandidates
@PreAuthorize("@entityAccess.checkAccess(#projectId, \"READ\")") public org.springframework.http.ResponseEntity<List<ExportCandidateDto>> getCandidates(UUID projectId) Description copied from interface:CandidatesApiGET /api/mia/project/{projectId}/candidates : getCandidates- Specified by:
getCandidatesin interfaceCandidatesApi- Parameters:
projectId- projectId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-