/src/main/java/com/twilio/rest/preview/hostedNumbers/AuthorizationDocumentReader.java

http://github.com/twilio/twilio-java · Java · 184 lines · 95 code · 18 blank · 71 comment · 12 complexity · 70361fb3cea6b7e6d2cd365fe77217a3 MD5 · raw file

  1. /**
  2. * This code was generated by
  3. * \ / _ _ _| _ _
  4. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  5. * / /
  6. */
  7. package com.twilio.rest.preview.hostedNumbers;
  8. import com.twilio.base.Page;
  9. import com.twilio.base.Reader;
  10. import com.twilio.base.ResourceSet;
  11. import com.twilio.exception.ApiConnectionException;
  12. import com.twilio.exception.ApiException;
  13. import com.twilio.exception.RestException;
  14. import com.twilio.http.HttpMethod;
  15. import com.twilio.http.Request;
  16. import com.twilio.http.Response;
  17. import com.twilio.http.TwilioRestClient;
  18. import com.twilio.rest.Domains;
  19. /**
  20. * PLEASE NOTE that this class contains preview products that are subject to
  21. * change. Use them with caution. If you currently do not have developer preview
  22. * access, please contact help@twilio.com.
  23. */
  24. public class AuthorizationDocumentReader extends Reader<AuthorizationDocument> {
  25. private String email;
  26. private AuthorizationDocument.Status status;
  27. /**
  28. * Email that this AuthorizationDocument will be sent to for signing..
  29. *
  30. * @param email Email.
  31. * @return this
  32. */
  33. public AuthorizationDocumentReader setEmail(final String email) {
  34. this.email = email;
  35. return this;
  36. }
  37. /**
  38. * Status of an instance resource. It can hold one of the values: 1. opened 2.
  39. * signing, 3. signed LOA, 4. canceled, 5. failed. See the section entitled <a
  40. * href="https://www.twilio.com/docs/api/phone-numbers/hosted-number-authorization-documents#status-values">Status
  41. * Values</a> for more information on each of these statuses..
  42. *
  43. * @param status The Status of this AuthorizationDocument.
  44. * @return this
  45. */
  46. public AuthorizationDocumentReader setStatus(final AuthorizationDocument.Status status) {
  47. this.status = status;
  48. return this;
  49. }
  50. /**
  51. * Make the request to the Twilio API to perform the read.
  52. *
  53. * @param client TwilioRestClient with which to make the request
  54. * @return AuthorizationDocument ResourceSet
  55. */
  56. @Override
  57. public ResourceSet<AuthorizationDocument> read(final TwilioRestClient client) {
  58. return new ResourceSet<>(this, client, firstPage(client));
  59. }
  60. /**
  61. * Make the request to the Twilio API to perform the read.
  62. *
  63. * @param client TwilioRestClient with which to make the request
  64. * @return AuthorizationDocument ResourceSet
  65. */
  66. @Override
  67. @SuppressWarnings("checkstyle:linelength")
  68. public Page<AuthorizationDocument> firstPage(final TwilioRestClient client) {
  69. Request request = new Request(
  70. HttpMethod.GET,
  71. Domains.PREVIEW.toString(),
  72. "/HostedNumbers/AuthorizationDocuments"
  73. );
  74. addQueryParams(request);
  75. return pageForRequest(client, request);
  76. }
  77. /**
  78. * Retrieve the target page from the Twilio API.
  79. *
  80. * @param targetUrl API-generated URL for the requested results page
  81. * @param client TwilioRestClient with which to make the request
  82. * @return AuthorizationDocument ResourceSet
  83. */
  84. @Override
  85. @SuppressWarnings("checkstyle:linelength")
  86. public Page<AuthorizationDocument> getPage(final String targetUrl, final TwilioRestClient client) {
  87. Request request = new Request(
  88. HttpMethod.GET,
  89. targetUrl
  90. );
  91. return pageForRequest(client, request);
  92. }
  93. /**
  94. * Retrieve the next page from the Twilio API.
  95. *
  96. * @param page current page
  97. * @param client TwilioRestClient with which to make the request
  98. * @return Next Page
  99. */
  100. @Override
  101. public Page<AuthorizationDocument> nextPage(final Page<AuthorizationDocument> page,
  102. final TwilioRestClient client) {
  103. Request request = new Request(
  104. HttpMethod.GET,
  105. page.getNextPageUrl(Domains.PREVIEW.toString())
  106. );
  107. return pageForRequest(client, request);
  108. }
  109. /**
  110. * Retrieve the previous page from the Twilio API.
  111. *
  112. * @param page current page
  113. * @param client TwilioRestClient with which to make the request
  114. * @return Previous Page
  115. */
  116. @Override
  117. public Page<AuthorizationDocument> previousPage(final Page<AuthorizationDocument> page,
  118. final TwilioRestClient client) {
  119. Request request = new Request(
  120. HttpMethod.GET,
  121. page.getPreviousPageUrl(Domains.PREVIEW.toString())
  122. );
  123. return pageForRequest(client, request);
  124. }
  125. /**
  126. * Generate a Page of AuthorizationDocument Resources for a given request.
  127. *
  128. * @param client TwilioRestClient with which to make the request
  129. * @param request Request to generate a page for
  130. * @return Page for the Request
  131. */
  132. private Page<AuthorizationDocument> pageForRequest(final TwilioRestClient client, final Request request) {
  133. Response response = client.request(request);
  134. if (response == null) {
  135. throw new ApiConnectionException("AuthorizationDocument read failed: Unable to connect to server");
  136. } else if (!TwilioRestClient.SUCCESS.test(response.getStatusCode())) {
  137. RestException restException = RestException.fromJson(response.getStream(), client.getObjectMapper());
  138. if (restException == null) {
  139. throw new ApiException("Server Error, no content");
  140. }
  141. throw new ApiException(restException);
  142. }
  143. return Page.fromJson(
  144. "items",
  145. response.getContent(),
  146. AuthorizationDocument.class,
  147. client.getObjectMapper()
  148. );
  149. }
  150. /**
  151. * Add the requested query string arguments to the Request.
  152. *
  153. * @param request Request to add query string arguments to
  154. */
  155. private void addQueryParams(final Request request) {
  156. if (email != null) {
  157. request.addQueryParam("Email", email);
  158. }
  159. if (status != null) {
  160. request.addQueryParam("Status", status.toString());
  161. }
  162. if (getPageSize() != null) {
  163. request.addQueryParam("PageSize", Integer.toString(getPageSize()));
  164. }
  165. }
  166. }