Package io.jans.as.client.uma
Interface UmaTokenService
public interface UmaTokenService
- Author:
- yuriyz on 06/21/2017.
-
Method Summary
Modifier and TypeMethodDescriptionio.jans.as.model.uma.UmaTokenResponse
requestJwtAuthorizationRpt
(String clientAssertionType, String clientAssertion, String grantType, String ticket, String claimToken, String claimTokenFormat, String pctCode, String rptCode, String scope) io.jans.as.model.uma.UmaTokenResponse
requestRpt
(String authorization, String grantType, String ticket, String claimToken, String claimTokenFormat, String pctCode, String rptCode, String scope)
-
Method Details
-
requestRpt
@POST @Consumes("application/json") @Produces("application/json") io.jans.as.model.uma.UmaTokenResponse requestRpt(@HeaderParam("Authorization") String authorization, @FormParam("grant_type") String grantType, @FormParam("ticket") String ticket, @FormParam("claim_token") String claimToken, @FormParam("claim_token_format") String claimTokenFormat, @FormParam("pct") String pctCode, @FormParam("rpt") String rptCode, @FormParam("scope") String scope) -
requestJwtAuthorizationRpt
@POST @Consumes("application/json") @Produces("application/json") io.jans.as.model.uma.UmaTokenResponse requestJwtAuthorizationRpt(@FormParam("client_assertion_type") String clientAssertionType, @FormParam("client_assertion") String clientAssertion, @FormParam("grant_type") String grantType, @FormParam("ticket") String ticket, @FormParam("claim_token") String claimToken, @FormParam("claim_token_format") String claimTokenFormat, @FormParam("pct") String pctCode, @FormParam("rpt") String rptCode, @FormParam("scope") String scope)
-