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
Modifier and Type Method Description HttpResponseFor<OAuthApplication>retrieve(OAuthApplicationRetrieveParams params)Returns a raw HTTP response for get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationService.retrieve.abstract HttpResponseFor<OAuthApplication>retrieve(OAuthApplicationRetrieveParams params, RequestOptions requestOptions)HttpResponseFor<OAuthApplicationListPage>list()Returns a raw HTTP response for get /oauth_applications, but is otherwise the same as OAuthApplicationService.list.abstract HttpResponseFor<OAuthApplicationListPage>list(OAuthApplicationListParams params, RequestOptions requestOptions)HttpResponseFor<OAuthApplicationListPage>list(OAuthApplicationListParams params)HttpResponseFor<OAuthApplicationListPage>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() HttpResponseFor<OAuthApplication> retrieve(OAuthApplicationRetrieveParams params)
Returns a raw HTTP response for
get /oauth_applications/{oauth_application_id}, but is otherwise the same as OAuthApplicationService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<OAuthApplication> retrieve(OAuthApplicationRetrieveParams params, 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)
-
-
-
-