Class AuthenticationRestController


  • @RestController
    @RequestMapping(value="/auth/",
                    produces="application/json")
    public class AuthenticationRestController
    extends AbstractApiService
    Used by the OpenIAM proxy for Kerberos and Cert authentication

    Do *not* modify without talking to the entire team

    Author:
    Lev Bornovalov
    • Constructor Detail

      • AuthenticationRestController

        @Autowired
        public AuthenticationRestController​(AuthenticationQueue queue)
    • Method Detail

      • renewToken

        @RequestMapping(value="/renewToken",
                        method=GET)
        @ResponseBody
        public Response renewToken​(@RequestParam(value="principal",required=true)
                                   String principal,
                                   @RequestParam(value="token",required=true)
                                   String token,
                                   @RequestParam(value="patternId",required=true)
                                   String patternId)