Interface ObjectService.WithRawResponse
-
- All Implemented Interfaces:
public interface ObjectService.WithRawResponseA view of ObjectService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
bulk
abstract BulkService.WithRawResponse bulk()
-
list
@MustBeClosed() HttpResponseFor<ObjectListPage> list(String collection)
Returns a raw HTTP response for
get /v1/objects/{collection}, but is otherwise the same as ObjectService.list.
-
list
@MustBeClosed() HttpResponseFor<ObjectListPage> list(String collection, ObjectListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ObjectListPage> list(String collection, ObjectListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<ObjectListPage> list(ObjectListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ObjectListPage> list(ObjectListParams params)
-
list
@MustBeClosed() HttpResponseFor<ObjectListPage> list(String collection, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<String> delete(String collection, String id)
Returns a raw HTTP response for
delete /v1/objects/{collection}/{id}, but is otherwise the same as ObjectService.delete.
-
delete
@MustBeClosed() HttpResponseFor<String> delete(String collection, String id, ObjectDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<String> delete(String collection, String id, ObjectDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponseFor<String> delete(ObjectDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<String> delete(ObjectDeleteParams params)
-
delete
@MustBeClosed() HttpResponseFor<String> delete(String collection, String id, RequestOptions requestOptions)
-
addSubscriptions
@MustBeClosed() HttpResponseFor<List<Subscription>> addSubscriptions(String collection, String objectId, ObjectAddSubscriptionsParams params)
Returns a raw HTTP response for
post /v1/objects/{collection}/{object_id}/subscriptions, but is otherwise the same as ObjectService.addSubscriptions.
-
addSubscriptions
@MustBeClosed() HttpResponseFor<List<Subscription>> addSubscriptions(String collection, String objectId, ObjectAddSubscriptionsParams params, RequestOptions requestOptions)
-
addSubscriptions
@MustBeClosed() HttpResponseFor<List<Subscription>> addSubscriptions(ObjectAddSubscriptionsParams params)
-
addSubscriptions
@MustBeClosed() abstract HttpResponseFor<List<Subscription>> addSubscriptions(ObjectAddSubscriptionsParams params, RequestOptions requestOptions)
-
deleteSubscriptions
@MustBeClosed() HttpResponseFor<List<Subscription>> deleteSubscriptions(String collection, String objectId, ObjectDeleteSubscriptionsParams params)
Returns a raw HTTP response for
delete /v1/objects/{collection}/{object_id}/subscriptions, but is otherwise the same as ObjectService.deleteSubscriptions.
-
deleteSubscriptions
@MustBeClosed() HttpResponseFor<List<Subscription>> deleteSubscriptions(String collection, String objectId, ObjectDeleteSubscriptionsParams params, RequestOptions requestOptions)
-
deleteSubscriptions
@MustBeClosed() HttpResponseFor<List<Subscription>> deleteSubscriptions(ObjectDeleteSubscriptionsParams params)
-
deleteSubscriptions
@MustBeClosed() abstract HttpResponseFor<List<Subscription>> deleteSubscriptions(ObjectDeleteSubscriptionsParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<Object> get(String collection, String id)
Returns a raw HTTP response for
get /v1/objects/{collection}/{id}, but is otherwise the same as ObjectService.get.
-
get
@MustBeClosed() HttpResponseFor<Object> get(String collection, String id, ObjectGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<Object> get(String collection, String id, ObjectGetParams params)
-
get
@MustBeClosed() abstract HttpResponseFor<Object> get(ObjectGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<Object> get(ObjectGetParams params)
-
get
@MustBeClosed() HttpResponseFor<Object> get(String collection, String id, RequestOptions requestOptions)
-
getChannelData
@MustBeClosed() HttpResponseFor<ChannelData> getChannelData(String collection, String objectId, String channelId)
Returns a raw HTTP response for
get /v1/objects/{collection}/{object_id}/channel_data/{channel_id}, but is otherwise the same as ObjectService.getChannelData.
-
getChannelData
@MustBeClosed() HttpResponseFor<ChannelData> getChannelData(String collection, String objectId, String channelId, ObjectGetChannelDataParams params, RequestOptions requestOptions)
-
getChannelData
@MustBeClosed() HttpResponseFor<ChannelData> getChannelData(String collection, String objectId, String channelId, ObjectGetChannelDataParams params)
-
getChannelData
@MustBeClosed() abstract HttpResponseFor<ChannelData> getChannelData(ObjectGetChannelDataParams params, RequestOptions requestOptions)
-
getChannelData
@MustBeClosed() HttpResponseFor<ChannelData> getChannelData(ObjectGetChannelDataParams params)
-
getChannelData
@MustBeClosed() HttpResponseFor<ChannelData> getChannelData(String collection, String objectId, String channelId, RequestOptions requestOptions)
-
getPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> getPreferences(String collection, String objectId, String id)
Returns a raw HTTP response for
get /v1/objects/{collection}/{object_id}/preferences/{id}, but is otherwise the same as ObjectService.getPreferences.
-
getPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> getPreferences(String collection, String objectId, String id, ObjectGetPreferencesParams params, RequestOptions requestOptions)
-
getPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> getPreferences(String collection, String objectId, String id, ObjectGetPreferencesParams params)
-
getPreferences
@MustBeClosed() abstract HttpResponseFor<PreferenceSet> getPreferences(ObjectGetPreferencesParams params, RequestOptions requestOptions)
-
getPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> getPreferences(ObjectGetPreferencesParams params)
-
getPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> getPreferences(String collection, String objectId, String id, RequestOptions requestOptions)
-
listMessages
@MustBeClosed() HttpResponseFor<ObjectListMessagesPage> listMessages(String collection, String id)
Returns a raw HTTP response for
get /v1/objects/{collection}/{id}/messages, but is otherwise the same as ObjectService.listMessages.
-
listMessages
@MustBeClosed() HttpResponseFor<ObjectListMessagesPage> listMessages(String collection, String id, ObjectListMessagesParams params, RequestOptions requestOptions)
-
listMessages
@MustBeClosed() HttpResponseFor<ObjectListMessagesPage> listMessages(String collection, String id, ObjectListMessagesParams params)
-
listMessages
@MustBeClosed() abstract HttpResponseFor<ObjectListMessagesPage> listMessages(ObjectListMessagesParams params, RequestOptions requestOptions)
-
listMessages
@MustBeClosed() HttpResponseFor<ObjectListMessagesPage> listMessages(ObjectListMessagesParams params)
-
listMessages
@MustBeClosed() HttpResponseFor<ObjectListMessagesPage> listMessages(String collection, String id, RequestOptions requestOptions)
-
listPreferences
@MustBeClosed() HttpResponseFor<List<PreferenceSet>> listPreferences(String collection, String objectId)
Returns a raw HTTP response for
get /v1/objects/{collection}/{object_id}/preferences, but is otherwise the same as ObjectService.listPreferences.
-
listPreferences
@MustBeClosed() HttpResponseFor<List<PreferenceSet>> listPreferences(String collection, String objectId, ObjectListPreferencesParams params, RequestOptions requestOptions)
-
listPreferences
@MustBeClosed() HttpResponseFor<List<PreferenceSet>> listPreferences(String collection, String objectId, ObjectListPreferencesParams params)
-
listPreferences
@MustBeClosed() abstract HttpResponseFor<List<PreferenceSet>> listPreferences(ObjectListPreferencesParams params, RequestOptions requestOptions)
-
listPreferences
@MustBeClosed() HttpResponseFor<List<PreferenceSet>> listPreferences(ObjectListPreferencesParams params)
-
listPreferences
@MustBeClosed() HttpResponseFor<List<PreferenceSet>> listPreferences(String collection, String objectId, RequestOptions requestOptions)
-
listSchedules
@MustBeClosed() HttpResponseFor<ObjectListSchedulesPage> listSchedules(String collection, String id)
Returns a raw HTTP response for
get /v1/objects/{collection}/{id}/schedules, but is otherwise the same as ObjectService.listSchedules.
-
listSchedules
@MustBeClosed() HttpResponseFor<ObjectListSchedulesPage> listSchedules(String collection, String id, ObjectListSchedulesParams params, RequestOptions requestOptions)
-
listSchedules
@MustBeClosed() HttpResponseFor<ObjectListSchedulesPage> listSchedules(String collection, String id, ObjectListSchedulesParams params)
-
listSchedules
@MustBeClosed() abstract HttpResponseFor<ObjectListSchedulesPage> listSchedules(ObjectListSchedulesParams params, RequestOptions requestOptions)
-
listSchedules
@MustBeClosed() HttpResponseFor<ObjectListSchedulesPage> listSchedules(ObjectListSchedulesParams params)
-
listSchedules
@MustBeClosed() HttpResponseFor<ObjectListSchedulesPage> listSchedules(String collection, String id, RequestOptions requestOptions)
-
listSubscriptions
@MustBeClosed() HttpResponseFor<ObjectListSubscriptionsPage> listSubscriptions(String collection, String objectId)
Returns a raw HTTP response for
get /v1/objects/{collection}/{object_id}/subscriptions, but is otherwise the same as ObjectService.listSubscriptions.
-
listSubscriptions
@MustBeClosed() HttpResponseFor<ObjectListSubscriptionsPage> listSubscriptions(String collection, String objectId, ObjectListSubscriptionsParams params, RequestOptions requestOptions)
-
listSubscriptions
@MustBeClosed() HttpResponseFor<ObjectListSubscriptionsPage> listSubscriptions(String collection, String objectId, ObjectListSubscriptionsParams params)
-
listSubscriptions
@MustBeClosed() abstract HttpResponseFor<ObjectListSubscriptionsPage> listSubscriptions(ObjectListSubscriptionsParams params, RequestOptions requestOptions)
-
listSubscriptions
@MustBeClosed() HttpResponseFor<ObjectListSubscriptionsPage> listSubscriptions(ObjectListSubscriptionsParams params)
-
listSubscriptions
@MustBeClosed() HttpResponseFor<ObjectListSubscriptionsPage> listSubscriptions(String collection, String objectId, RequestOptions requestOptions)
-
set
@MustBeClosed() HttpResponseFor<Object> set(String collection, String id)
Returns a raw HTTP response for
put /v1/objects/{collection}/{id}, but is otherwise the same as ObjectService.set.
-
set
@MustBeClosed() HttpResponseFor<Object> set(String collection, String id, ObjectSetParams params, RequestOptions requestOptions)
-
set
@MustBeClosed() HttpResponseFor<Object> set(String collection, String id, ObjectSetParams params)
-
set
@MustBeClosed() abstract HttpResponseFor<Object> set(ObjectSetParams params, RequestOptions requestOptions)
-
set
@MustBeClosed() HttpResponseFor<Object> set(ObjectSetParams params)
-
set
@MustBeClosed() HttpResponseFor<Object> set(String collection, String id, RequestOptions requestOptions)
-
setChannelData
@MustBeClosed() HttpResponseFor<ChannelData> setChannelData(String collection, String objectId, String channelId, ObjectSetChannelDataParams params)
Returns a raw HTTP response for
put /v1/objects/{collection}/{object_id}/channel_data/{channel_id}, but is otherwise the same as ObjectService.setChannelData.
-
setChannelData
@MustBeClosed() HttpResponseFor<ChannelData> setChannelData(String collection, String objectId, String channelId, ObjectSetChannelDataParams params, RequestOptions requestOptions)
-
setChannelData
@MustBeClosed() HttpResponseFor<ChannelData> setChannelData(ObjectSetChannelDataParams params)
-
setChannelData
@MustBeClosed() abstract HttpResponseFor<ChannelData> setChannelData(ObjectSetChannelDataParams params, RequestOptions requestOptions)
-
setPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> setPreferences(String collection, String objectId, String id, ObjectSetPreferencesParams params)
Returns a raw HTTP response for
put /v1/objects/{collection}/{object_id}/preferences/{id}, but is otherwise the same as ObjectService.setPreferences.
-
setPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> setPreferences(String collection, String objectId, String id, ObjectSetPreferencesParams params, RequestOptions requestOptions)
-
setPreferences
@MustBeClosed() HttpResponseFor<PreferenceSet> setPreferences(ObjectSetPreferencesParams params)
-
setPreferences
@MustBeClosed() abstract HttpResponseFor<PreferenceSet> setPreferences(ObjectSetPreferencesParams params, RequestOptions requestOptions)
-
unsetChannelData
@MustBeClosed() HttpResponseFor<String> unsetChannelData(String collection, String objectId, String channelId)
Returns a raw HTTP response for
delete /v1/objects/{collection}/{object_id}/channel_data/{channel_id}, but is otherwise the same as ObjectService.unsetChannelData.
-
unsetChannelData
@MustBeClosed() HttpResponseFor<String> unsetChannelData(String collection, String objectId, String channelId, ObjectUnsetChannelDataParams params, RequestOptions requestOptions)
-
unsetChannelData
@MustBeClosed() HttpResponseFor<String> unsetChannelData(String collection, String objectId, String channelId, ObjectUnsetChannelDataParams params)
-
unsetChannelData
@MustBeClosed() abstract HttpResponseFor<String> unsetChannelData(ObjectUnsetChannelDataParams params, RequestOptions requestOptions)
-
unsetChannelData
@MustBeClosed() HttpResponseFor<String> unsetChannelData(ObjectUnsetChannelDataParams params)
-
unsetChannelData
@MustBeClosed() HttpResponseFor<String> unsetChannelData(String collection, String objectId, String channelId, RequestOptions requestOptions)
-
-
-
-