Package pl.gsmservice.gateway.utils
Interface AsyncResponse
-
- All Known Implementing Classes:
AddSenderResponse,CancelMessagesResponse,DeleteSenderResponse,GetAccountDetailsResponse,GetIncomingMessagesResponse,GetMessagesResponse,GetMmsPriceResponse,GetSmsPriceResponse,GetSubaccountDetailsResponse,ListIncomingMessagesResponse,ListMessagesResponse,ListSendersResponse,PingResponse,SendMmsResponse,SendSmsResponse,SetDefaultSenderResponse
public interface AsyncResponse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringcontentType()Returns the value of the Content-Type header.java.net.http.HttpResponse<Blob>rawResponse()Returns the raw response.intstatusCode()Returns the HTTP status code.
-
-
-
Method Detail
-
contentType
java.lang.String contentType()
Returns the value of the Content-Type header.
-
statusCode
int statusCode()
Returns the HTTP status code.
-
rawResponse
java.net.http.HttpResponse<Blob> rawResponse()
Returns the raw response.
-
-