Interface OIDCJWKSService
- 
- All Superinterfaces:
- JAXRSService
 - All Known Implementing Classes:
- OIDCJWKSServiceImpl
 
 @Path("oidc/jwks") public interface OIDCJWKSService extends JAXRSService
- 
- 
Field Summary- 
Fields inherited from interface org.apache.syncope.common.rest.api.service.JAXRSServiceCRLF, DOUBLE_DASH, PARAM_ANYTYPE_KIND, PARAM_ANYTYPEKEY, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_KEYWORD, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_REALM, PARAM_RECURSIVE, PARAM_RESOURCE, PARAM_SIZE, PARAM_USER
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete()javax.ws.rs.core.Responsegenerate(@NotNull String jwksKeyId, @NotNull String jwksType, @javax.validation.constraints.NotNull int jwksKeySize)OIDCJWKSTOget()voidset(@NotNull OIDCJWKSTO entityTO)
 
- 
- 
- 
Method Detail- 
get@GET @Produces({"application/json","application/yaml","application/xml"}) OIDCJWKSTO get()
 - 
set@POST @Consumes({"application/json","application/yaml","application/xml"}) @Produces({"application/json","application/yaml","application/xml"}) void set(@NotNull @NotNull OIDCJWKSTO entityTO)
 - 
generate@POST @Consumes({"application/json","application/yaml","application/xml"}) @Produces({"application/json","application/yaml","application/xml"}) @Path("new") javax.ws.rs.core.Response generate(@NotNull @QueryParam("jwksKeyId") @DefaultValue("syncope") @NotNull String jwksKeyId, @NotNull @QueryParam("jwksType") @DefaultValue("RSA") @NotNull String jwksType, @NotNull @QueryParam("jwksKeySize") @DefaultValue("2048") @javax.validation.constraints.NotNull int jwksKeySize)
 - 
delete@DELETE @Consumes({"application/json","application/yaml","application/xml"}) @Produces({"application/json","application/yaml","application/xml"}) void delete()
 
- 
 
-