/src/main/java/com/twilio/rest/taskrouter/v1/workspace/TaskQueueCreator.java

http://github.com/twilio/twilio-java · Java · 172 lines · 85 code · 19 blank · 68 comment · 18 complexity · 9e72a816a070f16c3733c09a289dc9bd MD5 · raw file

  1. /**
  2. * This code was generated by
  3. * \ / _ _ _| _ _
  4. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  5. * / /
  6. */
  7. package com.twilio.rest.taskrouter.v1.workspace;
  8. import com.twilio.base.Creator;
  9. import com.twilio.exception.ApiConnectionException;
  10. import com.twilio.exception.ApiException;
  11. import com.twilio.exception.RestException;
  12. import com.twilio.http.HttpMethod;
  13. import com.twilio.http.Request;
  14. import com.twilio.http.Response;
  15. import com.twilio.http.TwilioRestClient;
  16. import com.twilio.rest.Domains;
  17. public class TaskQueueCreator extends Creator<TaskQueue> {
  18. private final String pathWorkspaceSid;
  19. private final String friendlyName;
  20. private String targetWorkers;
  21. private Integer maxReservedWorkers;
  22. private TaskQueue.TaskOrder taskOrder;
  23. private String reservationActivitySid;
  24. private String assignmentActivitySid;
  25. /**
  26. * Construct a new TaskQueueCreator.
  27. *
  28. * @param pathWorkspaceSid The SID of the Workspace that the new TaskQueue
  29. * belongs to
  30. * @param friendlyName A string to describe the resource
  31. */
  32. public TaskQueueCreator(final String pathWorkspaceSid,
  33. final String friendlyName) {
  34. this.pathWorkspaceSid = pathWorkspaceSid;
  35. this.friendlyName = friendlyName;
  36. }
  37. /**
  38. * A string that describes the Worker selection criteria for any Tasks that
  39. * enter the TaskQueue. For example, `'"language" == "spanish"'`. The default
  40. * value is `1==1`. If this value is empty, Tasks will wait in the TaskQueue
  41. * until they are deleted or moved to another TaskQueue. For more information
  42. * about Worker selection, see <a
  43. * href="https://www.twilio.com/docs/taskrouter/api/taskqueues#target-workers">Describing
  44. * Worker selection criteria</a>..
  45. *
  46. * @param targetWorkers A string describing the Worker selection criteria for
  47. * any Tasks that enter the TaskQueue
  48. * @return this
  49. */
  50. public TaskQueueCreator setTargetWorkers(final String targetWorkers) {
  51. this.targetWorkers = targetWorkers;
  52. return this;
  53. }
  54. /**
  55. * The maximum number of Workers to reserve for the assignment of a Task in the
  56. * queue. Can be an integer between 1 and 50, inclusive and defaults to 1..
  57. *
  58. * @param maxReservedWorkers The maximum number of Workers to reserve
  59. * @return this
  60. */
  61. public TaskQueueCreator setMaxReservedWorkers(final Integer maxReservedWorkers) {
  62. this.maxReservedWorkers = maxReservedWorkers;
  63. return this;
  64. }
  65. /**
  66. * How Tasks will be assigned to Workers. Set this parameter to `LIFO` to assign
  67. * most recently created Task first or FIFO to assign the oldest Task first.
  68. * Default is `FIFO`. <a
  69. * href="https://www.twilio.com/docs/taskrouter/queue-ordering-last-first-out-lifo">Click
  70. * here</a> to learn more..
  71. *
  72. * @param taskOrder How Tasks will be assigned to Workers
  73. * @return this
  74. */
  75. public TaskQueueCreator setTaskOrder(final TaskQueue.TaskOrder taskOrder) {
  76. this.taskOrder = taskOrder;
  77. return this;
  78. }
  79. /**
  80. * The SID of the Activity to assign Workers when a task is reserved for them..
  81. *
  82. * @param reservationActivitySid The SID of the Activity to assign Workers when
  83. * a task is reserved for them
  84. * @return this
  85. */
  86. public TaskQueueCreator setReservationActivitySid(final String reservationActivitySid) {
  87. this.reservationActivitySid = reservationActivitySid;
  88. return this;
  89. }
  90. /**
  91. * The SID of the Activity to assign Workers when a task is assigned to them..
  92. *
  93. * @param assignmentActivitySid The SID of the Activity to assign Workers once
  94. * a task is assigned to them
  95. * @return this
  96. */
  97. public TaskQueueCreator setAssignmentActivitySid(final String assignmentActivitySid) {
  98. this.assignmentActivitySid = assignmentActivitySid;
  99. return this;
  100. }
  101. /**
  102. * Make the request to the Twilio API to perform the create.
  103. *
  104. * @param client TwilioRestClient with which to make the request
  105. * @return Created TaskQueue
  106. */
  107. @Override
  108. @SuppressWarnings("checkstyle:linelength")
  109. public TaskQueue create(final TwilioRestClient client) {
  110. Request request = new Request(
  111. HttpMethod.POST,
  112. Domains.TASKROUTER.toString(),
  113. "/v1/Workspaces/" + this.pathWorkspaceSid + "/TaskQueues"
  114. );
  115. addPostParams(request);
  116. Response response = client.request(request);
  117. if (response == null) {
  118. throw new ApiConnectionException("TaskQueue creation failed: Unable to connect to server");
  119. } else if (!TwilioRestClient.SUCCESS.test(response.getStatusCode())) {
  120. RestException restException = RestException.fromJson(response.getStream(), client.getObjectMapper());
  121. if (restException == null) {
  122. throw new ApiException("Server Error, no content");
  123. }
  124. throw new ApiException(restException);
  125. }
  126. return TaskQueue.fromJson(response.getStream(), client.getObjectMapper());
  127. }
  128. /**
  129. * Add the requested post parameters to the Request.
  130. *
  131. * @param request Request to add post params to
  132. */
  133. private void addPostParams(final Request request) {
  134. if (friendlyName != null) {
  135. request.addPostParam("FriendlyName", friendlyName);
  136. }
  137. if (targetWorkers != null) {
  138. request.addPostParam("TargetWorkers", targetWorkers);
  139. }
  140. if (maxReservedWorkers != null) {
  141. request.addPostParam("MaxReservedWorkers", maxReservedWorkers.toString());
  142. }
  143. if (taskOrder != null) {
  144. request.addPostParam("TaskOrder", taskOrder.toString());
  145. }
  146. if (reservationActivitySid != null) {
  147. request.addPostParam("ReservationActivitySid", reservationActivitySid);
  148. }
  149. if (assignmentActivitySid != null) {
  150. request.addPostParam("AssignmentActivitySid", assignmentActivitySid);
  151. }
  152. }
  153. }