@Controller
@RequestMapping("/.well-known")
public class OIDCController
extends Object
-
Constructor Summary
Constructors
-
Method Summary
getJWKS(String clientId,
javax.servlet.http.HttpServletRequest request)
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
OIDCController
public OIDCController()
-
Method Details
-
getConfiguration
@RequestMapping(value="/openid-configuration",
method=GET)
@ResponseBody
public Map<String,Object> getConfiguration(@RequestParam(value="client_id",required=false)
String clientId,
javax.servlet.http.HttpServletRequest request)
-
getJWKS
@RequestMapping(value="/jwks.json",
method=GET)
@ResponseBody
public Map<String,List<Map<String,String>>> getJWKS(@RequestParam(value="client_id",required=false)
String clientId,
javax.servlet.http.HttpServletRequest request)