public interface IRoomListRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<? super RoomList> callback)
Delete this item from the service
|
IRoomListRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
RoomList |
get()
Gets the RoomList from the service
|
void |
get(ICallback<? super RoomList> callback)
Gets the RoomList from the service
|
RoomList |
patch(RoomList sourceRoomList)
Patches this RoomList with a source
|
void |
patch(RoomList sourceRoomList,
ICallback<? super RoomList> callback)
Patches this RoomList with a source
|
RoomList |
post(RoomList newRoomList)
Posts a RoomList with a new object
|
void |
post(RoomList newRoomList,
ICallback<? super RoomList> callback)
Posts a RoomList with a new object
|
RoomList |
put(RoomList newRoomList)
Posts a RoomList with a new object
|
void |
put(RoomList newRoomList,
ICallback<? super RoomList> callback)
Posts a RoomList with a new object
|
IRoomListRequest |
select(java.lang.String value)
Sets the select clause for the request
|
addHeader, getDelay, getHeaders, getHttpMethod, getHttpRequest, getHttpRequest, getHttpRequest, getMaxRedirects, getMaxRetries, getOptions, getRequestUrl, getShouldRedirect, getShouldRetry, getUseCaches, setDelay, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCaches, withHttpMethodvoid get(ICallback<? super RoomList> callback)
callback - the callback to be called after success or failureRoomList get() throws ClientException
ClientException - this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<? super RoomList> callback)
callback - the callback when the deletion action has completedvoid delete()
throws ClientException
ClientException - if there was an exception during the delete operationvoid patch(RoomList sourceRoomList, ICallback<? super RoomList> callback)
sourceRoomList - the source object with updatescallback - the callback to be called after success or failureRoomList patch(RoomList sourceRoomList) throws ClientException
sourceRoomList - the source object with updatesClientException - this exception occurs if the request was unable to complete for any reasonvoid post(RoomList newRoomList, ICallback<? super RoomList> callback)
newRoomList - the new object to createcallback - the callback to be called after success or failureRoomList post(RoomList newRoomList) throws ClientException
newRoomList - the new object to createClientException - this exception occurs if the request was unable to complete for any reasonvoid put(RoomList newRoomList, ICallback<? super RoomList> callback)
newRoomList - the object to create/updatecallback - the callback to be called after success or failureRoomList put(RoomList newRoomList) throws ClientException
newRoomList - the object to create/updateClientException - this exception occurs if the request was unable to complete for any reasonIRoomListRequest select(java.lang.String value)
value - the select clauseIRoomListRequest expand(java.lang.String value)
value - the expand clause