Interface TokenService


  • @Produces("application/json")
    @Consumes("application/x-www-form-urlencoded")
    public interface TokenService
    The service for the token management endpoints.
    Since:
    0.9.0
    • Method Detail

      • grantToken

        @POST
        @Path("/realms/{realm}/protocol/openid-connect/token")
        AccessTokenResponse grantToken​(@PathParam("realm")
                                       String realm,
                                       @HeaderParam("Authorization")
                                       String auth,
                                       javax.ws.rs.core.MultivaluedMap<String,​String> map)