Class ApplicationGrantsApi

java.lang.Object
com.okta.sdk.resource.api.ApplicationGrantsApi

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-03-29T16:46:27.777599-05:00[America/Chicago]", comments="Generator version: 7.4.0") public class ApplicationGrantsApi extends Object
  • Constructor Details

    • ApplicationGrantsApi

      public ApplicationGrantsApi()
    • ApplicationGrantsApi

      public ApplicationGrantsApi(ApiClient apiClient)
  • Method Details

    • getApiClient

      public ApiClient getApiClient()
    • setApiClient

      public void setApiClient(ApiClient apiClient)
    • getScopeConsentGrant

      public OAuth2ScopeConsentGrant getScopeConsentGrant(String appId, String grantId, String expand) throws ApiException
      Retrieve a Scope Consent Grant Retrieves a single scope consent grant for the application
      Parameters:
      appId - ID of the Application (required)
      grantId - `id` of the Grant (required)
      expand - (optional)
      Returns:
      OAuth2ScopeConsentGrant
      Throws:
      ApiException - if fails to make API call
    • getScopeConsentGrant

      public OAuth2ScopeConsentGrant getScopeConsentGrant(String appId, String grantId, String expand, Map<String,String> additionalHeaders) throws ApiException
      Retrieve a Scope Consent Grant Retrieves a single scope consent grant for the application
      Parameters:
      appId - ID of the Application (required)
      grantId - `id` of the Grant (required)
      expand - (optional)
      additionalHeaders - additionalHeaders for this call
      Returns:
      OAuth2ScopeConsentGrant
      Throws:
      ApiException - if fails to make API call
    • grantConsentToScope

      public OAuth2ScopeConsentGrant grantConsentToScope(String appId, OAuth2ScopeConsentGrant oAuth2ScopeConsentGrant) throws ApiException
      Grant Consent to Scope Grants consent for the application to request an OAuth 2.0 Okta scope
      Parameters:
      appId - ID of the Application (required)
      oAuth2ScopeConsentGrant - (required)
      Returns:
      OAuth2ScopeConsentGrant
      Throws:
      ApiException - if fails to make API call
    • grantConsentToScope

      public OAuth2ScopeConsentGrant grantConsentToScope(String appId, OAuth2ScopeConsentGrant oAuth2ScopeConsentGrant, Map<String,String> additionalHeaders) throws ApiException
      Grant Consent to Scope Grants consent for the application to request an OAuth 2.0 Okta scope
      Parameters:
      appId - ID of the Application (required)
      oAuth2ScopeConsentGrant - (required)
      additionalHeaders - additionalHeaders for this call
      Returns:
      OAuth2ScopeConsentGrant
      Throws:
      ApiException - if fails to make API call
    • listScopeConsentGrants

      public List<OAuth2ScopeConsentGrant> listScopeConsentGrants(String appId, String expand) throws ApiException
      List all Scope Consent Grants Lists all scope consent grants for the application
      Parameters:
      appId - ID of the Application (required)
      expand - (optional)
      Returns:
      List<OAuth2ScopeConsentGrant>
      Throws:
      ApiException - if fails to make API call
    • listScopeConsentGrants

      public List<OAuth2ScopeConsentGrant> listScopeConsentGrants(String appId, String expand, Map<String,String> additionalHeaders) throws ApiException
      List all Scope Consent Grants Lists all scope consent grants for the application
      Parameters:
      appId - ID of the Application (required)
      expand - (optional)
      additionalHeaders - additionalHeaders for this call
      Returns:
      List<OAuth2ScopeConsentGrant>
      Throws:
      ApiException - if fails to make API call
    • revokeScopeConsentGrant

      public void revokeScopeConsentGrant(String appId, String grantId) throws ApiException
      Revoke a Scope Consent Grant Revokes permission for the application to request the given scope
      Parameters:
      appId - ID of the Application (required)
      grantId - `id` of the Grant (required)
      Throws:
      ApiException - if fails to make API call
    • revokeScopeConsentGrant

      public void revokeScopeConsentGrant(String appId, String grantId, Map<String,String> additionalHeaders) throws ApiException
      Revoke a Scope Consent Grant Revokes permission for the application to request the given scope
      Parameters:
      appId - ID of the Application (required)
      grantId - `id` of the Grant (required)
      additionalHeaders - additionalHeaders for this call
      Throws:
      ApiException - if fails to make API call
    • getObjectMapper

      protected static com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()