Class LinkedinSignInController
- java.lang.Object
-
- cronapp.framework.authentication.social.linkedin.LinkedinSignInController
-
@RestController @RequestMapping("/signin/linkedin") public class LinkedinSignInController extends Object
-
-
Constructor Summary
Constructors Constructor Description LinkedinSignInController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidget(String code, String state, String error, String errorDescription)voidhandleControllerException(javax.servlet.http.HttpServletRequest req, Throwable ex)voidpost(String scope)
-
-
-
Method Detail
-
handleControllerException
@ExceptionHandler(java.lang.Throwable.class) @ResponseBody public void handleControllerException(javax.servlet.http.HttpServletRequest req, Throwable ex) throws IOException
- Throws:
IOException
-
post
@ResponseStatus(OK) @RequestMapping(method=POST) public void post(@RequestParam(name="scope",required=false) String scope) throws Exception- Throws:
Exception
-
get
@ResponseStatus(OK) @RequestMapping(method=GET) public void get(@RequestParam(name="code",required=false) String code, @RequestParam(name="state",required=false) String state, @RequestParam(name="error",required=false) String error, @RequestParam(name="error_description",required=false) String errorDescription) throws Exception- Throws:
Exception
-
-