Class JwksService
- java.lang.Object
-
- org.apache.cxf.rs.security.oauth2.services.JwksService
-
- Direct Known Subclasses:
OidcKeysService
public class JwksService extends Object
-
-
Constructor Summary
Constructors Constructor Description JwksService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonWebKeysgetPublicVerificationKeys()booleanisStripPrivateParameters()voidsetKeyServiceClient(WebClient keyServiceClient)voidsetStripPrivateParameters(boolean stripPrivateParameters)Whether to strip private parameters from the keys that are returned.
-
-
-
Method Detail
-
getPublicVerificationKeys
@Path("keys") @GET @Produces("application/json") public JsonWebKeys getPublicVerificationKeys()
-
setKeyServiceClient
public void setKeyServiceClient(WebClient keyServiceClient)
-
isStripPrivateParameters
public boolean isStripPrivateParameters()
-
setStripPrivateParameters
public void setStripPrivateParameters(boolean stripPrivateParameters)
Whether to strip private parameters from the keys that are returned. The default is true.
-
-