Package com.profile.searcher.rest.v1
Class LinkedInProfileController
java.lang.Object
com.profile.searcher.rest.v1.LinkedInProfileController
@RestController
@RequestMapping("/api/v1/linked-in")
@Validated
public class LinkedInProfileController
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<SuccessResponseVO<List<AlumniVO>>>
fetchAllAlumni
(int page, int limit) org.springframework.http.ResponseEntity<SuccessResponseVO<Object>>
fetchScrapedAlumniProfiles
(UUID trackingId) org.springframework.http.ResponseEntity<SuccessResponseVO<Object>>
searchAlumniLinkedInProfiles
(@Valid LinkedInProfileSearchDTO linkedInProfileSearchDTO)
-
Constructor Details
-
LinkedInProfileController
public LinkedInProfileController()
-
-
Method Details
-
searchAlumniLinkedInProfiles
@PostMapping("/search") public org.springframework.http.ResponseEntity<SuccessResponseVO<Object>> searchAlumniLinkedInProfiles(@RequestBody @Valid @Valid LinkedInProfileSearchDTO linkedInProfileSearchDTO) -
fetchScrapedAlumniProfiles
@GetMapping("/fetch/{trackingId}") public org.springframework.http.ResponseEntity<SuccessResponseVO<Object>> fetchScrapedAlumniProfiles(@PathVariable UUID trackingId) -
fetchAllAlumni
@GetMapping("/fetch/all") public org.springframework.http.ResponseEntity<SuccessResponseVO<List<AlumniVO>>> fetchAllAlumni(@RequestParam int page, @RequestParam int limit)
-