Interface OAuthApplicationService.WithRawResponse
-
- All Implemented Interfaces:
public interface OAuthApplicationService.WithRawResponseA view of OAuthApplicationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract OAuthApplicationService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@MustBeClosed() HttpResponseFor<OAuthApplication> retrieve(String oauthApplicationId)
Returns a raw HTTP response for
get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<OAuthApplication> retrieve(String oauthApplicationId, OAuthApplicationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<OAuthApplication> retrieve(String oauthApplicationId, OAuthApplicationRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<OAuthApplication> retrieve(OAuthApplicationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<OAuthApplication> retrieve(OAuthApplicationRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<OAuthApplication> retrieve(String oauthApplicationId, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<OAuthApplicationListPage> list()
Returns a raw HTTP response for
get /oauth_applications, but is otherwise the same as OAuthApplicationService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<OAuthApplicationListPage> list(OAuthApplicationListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<OAuthApplicationListPage> list(OAuthApplicationListParams params)
-
list
@MustBeClosed() HttpResponseFor<OAuthApplicationListPage> list(RequestOptions requestOptions)
-
-
-
-