/src/main/java/com/twilio/rest/api/v2010/account/conference/Participant.java

http://github.com/twilio/twilio-java · Java · 493 lines · 253 code · 42 blank · 198 comment · 6 complexity · 71f724d0868fb290dcf4b21883b518a7 MD5 · raw file

  1. /**
  2. * This code was generated by
  3. * \ / _ _ _| _ _
  4. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  5. * / /
  6. */
  7. package com.twilio.rest.api.v2010.account.conference;
  8. import com.fasterxml.jackson.annotation.JsonCreator;
  9. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  10. import com.fasterxml.jackson.annotation.JsonProperty;
  11. import com.fasterxml.jackson.core.JsonParseException;
  12. import com.fasterxml.jackson.databind.JsonMappingException;
  13. import com.fasterxml.jackson.databind.ObjectMapper;
  14. import com.twilio.base.Resource;
  15. import com.twilio.converter.DateConverter;
  16. import com.twilio.converter.Promoter;
  17. import com.twilio.exception.ApiConnectionException;
  18. import com.twilio.exception.ApiException;
  19. import com.twilio.exception.RestException;
  20. import com.twilio.http.HttpMethod;
  21. import com.twilio.http.Request;
  22. import com.twilio.http.Response;
  23. import com.twilio.http.TwilioRestClient;
  24. import com.twilio.rest.Domains;
  25. import com.twilio.type.Endpoint;
  26. import lombok.ToString;
  27. import java.io.IOException;
  28. import java.io.InputStream;
  29. import java.time.ZonedDateTime;
  30. import java.util.Map;
  31. import java.util.Objects;
  32. @JsonIgnoreProperties(ignoreUnknown = true)
  33. @ToString
  34. public class Participant extends Resource {
  35. private static final long serialVersionUID = 89883663840219L;
  36. public enum Status {
  37. QUEUED("queued"),
  38. CONNECTING("connecting"),
  39. RINGING("ringing"),
  40. CONNECTED("connected"),
  41. COMPLETE("complete"),
  42. FAILED("failed");
  43. private final String value;
  44. private Status(final String value) {
  45. this.value = value;
  46. }
  47. public String toString() {
  48. return value;
  49. }
  50. /**
  51. * Generate a Status from a string.
  52. * @param value string value
  53. * @return generated Status
  54. */
  55. @JsonCreator
  56. public static Status forValue(final String value) {
  57. return Promoter.enumFromString(value, Status.values());
  58. }
  59. }
  60. /**
  61. * Create a ParticipantFetcher to execute fetch.
  62. *
  63. * @param pathAccountSid The SID of the Account that created the resource to
  64. * fetch
  65. * @param pathConferenceSid The SID of the conference with the participant to
  66. * fetch
  67. * @param pathCallSid The Call SID or URL encoded label of the participant to
  68. * fetch
  69. * @return ParticipantFetcher capable of executing the fetch
  70. */
  71. public static ParticipantFetcher fetcher(final String pathAccountSid,
  72. final String pathConferenceSid,
  73. final String pathCallSid) {
  74. return new ParticipantFetcher(pathAccountSid, pathConferenceSid, pathCallSid);
  75. }
  76. /**
  77. * Create a ParticipantFetcher to execute fetch.
  78. *
  79. * @param pathConferenceSid The SID of the conference with the participant to
  80. * fetch
  81. * @param pathCallSid The Call SID or URL encoded label of the participant to
  82. * fetch
  83. * @return ParticipantFetcher capable of executing the fetch
  84. */
  85. public static ParticipantFetcher fetcher(final String pathConferenceSid,
  86. final String pathCallSid) {
  87. return new ParticipantFetcher(pathConferenceSid, pathCallSid);
  88. }
  89. /**
  90. * Create a ParticipantUpdater to execute update.
  91. *
  92. * @param pathAccountSid The SID of the Account that created the resources to
  93. * update
  94. * @param pathConferenceSid The SID of the conference with the participant to
  95. * update
  96. * @param pathCallSid The Call SID or URL encoded label of the participant to
  97. * update
  98. * @return ParticipantUpdater capable of executing the update
  99. */
  100. public static ParticipantUpdater updater(final String pathAccountSid,
  101. final String pathConferenceSid,
  102. final String pathCallSid) {
  103. return new ParticipantUpdater(pathAccountSid, pathConferenceSid, pathCallSid);
  104. }
  105. /**
  106. * Create a ParticipantUpdater to execute update.
  107. *
  108. * @param pathConferenceSid The SID of the conference with the participant to
  109. * update
  110. * @param pathCallSid The Call SID or URL encoded label of the participant to
  111. * update
  112. * @return ParticipantUpdater capable of executing the update
  113. */
  114. public static ParticipantUpdater updater(final String pathConferenceSid,
  115. final String pathCallSid) {
  116. return new ParticipantUpdater(pathConferenceSid, pathCallSid);
  117. }
  118. /**
  119. * Create a ParticipantCreator to execute create.
  120. *
  121. * @param pathAccountSid The SID of the Account that will create the resource
  122. * @param pathConferenceSid The SID of the participant's conference
  123. * @param from The phone number, Client identifier, or username portion of SIP
  124. * address that made this call.
  125. * @param to The phone number, SIP address or Client identifier that received
  126. * this call.
  127. * @return ParticipantCreator capable of executing the create
  128. */
  129. public static ParticipantCreator creator(final String pathAccountSid,
  130. final String pathConferenceSid,
  131. final com.twilio.type.Endpoint from,
  132. final com.twilio.type.Endpoint to) {
  133. return new ParticipantCreator(pathAccountSid, pathConferenceSid, from, to);
  134. }
  135. /**
  136. * Create a ParticipantCreator to execute create.
  137. *
  138. * @param pathConferenceSid The SID of the participant's conference
  139. * @param from The phone number, Client identifier, or username portion of SIP
  140. * address that made this call.
  141. * @param to The phone number, SIP address or Client identifier that received
  142. * this call.
  143. * @return ParticipantCreator capable of executing the create
  144. */
  145. public static ParticipantCreator creator(final String pathConferenceSid,
  146. final com.twilio.type.Endpoint from,
  147. final com.twilio.type.Endpoint to) {
  148. return new ParticipantCreator(pathConferenceSid, from, to);
  149. }
  150. /**
  151. * Create a ParticipantDeleter to execute delete.
  152. *
  153. * @param pathAccountSid The SID of the Account that created the resources to
  154. * delete
  155. * @param pathConferenceSid The SID of the conference with the participants to
  156. * delete
  157. * @param pathCallSid The Call SID or URL encoded label of the participant to
  158. * delete
  159. * @return ParticipantDeleter capable of executing the delete
  160. */
  161. public static ParticipantDeleter deleter(final String pathAccountSid,
  162. final String pathConferenceSid,
  163. final String pathCallSid) {
  164. return new ParticipantDeleter(pathAccountSid, pathConferenceSid, pathCallSid);
  165. }
  166. /**
  167. * Create a ParticipantDeleter to execute delete.
  168. *
  169. * @param pathConferenceSid The SID of the conference with the participants to
  170. * delete
  171. * @param pathCallSid The Call SID or URL encoded label of the participant to
  172. * delete
  173. * @return ParticipantDeleter capable of executing the delete
  174. */
  175. public static ParticipantDeleter deleter(final String pathConferenceSid,
  176. final String pathCallSid) {
  177. return new ParticipantDeleter(pathConferenceSid, pathCallSid);
  178. }
  179. /**
  180. * Create a ParticipantReader to execute read.
  181. *
  182. * @param pathAccountSid The SID of the Account that created the resources to
  183. * read
  184. * @param pathConferenceSid The SID of the conference with the participants to
  185. * read
  186. * @return ParticipantReader capable of executing the read
  187. */
  188. public static ParticipantReader reader(final String pathAccountSid,
  189. final String pathConferenceSid) {
  190. return new ParticipantReader(pathAccountSid, pathConferenceSid);
  191. }
  192. /**
  193. * Create a ParticipantReader to execute read.
  194. *
  195. * @param pathConferenceSid The SID of the conference with the participants to
  196. * read
  197. * @return ParticipantReader capable of executing the read
  198. */
  199. public static ParticipantReader reader(final String pathConferenceSid) {
  200. return new ParticipantReader(pathConferenceSid);
  201. }
  202. /**
  203. * Converts a JSON String into a Participant object using the provided
  204. * ObjectMapper.
  205. *
  206. * @param json Raw JSON String
  207. * @param objectMapper Jackson ObjectMapper
  208. * @return Participant object represented by the provided JSON
  209. */
  210. public static Participant fromJson(final String json, final ObjectMapper objectMapper) {
  211. // Convert all checked exceptions to Runtime
  212. try {
  213. return objectMapper.readValue(json, Participant.class);
  214. } catch (final JsonMappingException | JsonParseException e) {
  215. throw new ApiException(e.getMessage(), e);
  216. } catch (final IOException e) {
  217. throw new ApiConnectionException(e.getMessage(), e);
  218. }
  219. }
  220. /**
  221. * Converts a JSON InputStream into a Participant object using the provided
  222. * ObjectMapper.
  223. *
  224. * @param json Raw JSON InputStream
  225. * @param objectMapper Jackson ObjectMapper
  226. * @return Participant object represented by the provided JSON
  227. */
  228. public static Participant fromJson(final InputStream json, final ObjectMapper objectMapper) {
  229. // Convert all checked exceptions to Runtime
  230. try {
  231. return objectMapper.readValue(json, Participant.class);
  232. } catch (final JsonMappingException | JsonParseException e) {
  233. throw new ApiException(e.getMessage(), e);
  234. } catch (final IOException e) {
  235. throw new ApiConnectionException(e.getMessage(), e);
  236. }
  237. }
  238. private final String accountSid;
  239. private final String callSid;
  240. private final String label;
  241. private final String callSidToCoach;
  242. private final Boolean coaching;
  243. private final String conferenceSid;
  244. private final ZonedDateTime dateCreated;
  245. private final ZonedDateTime dateUpdated;
  246. private final Boolean endConferenceOnExit;
  247. private final Boolean muted;
  248. private final Boolean hold;
  249. private final Boolean startConferenceOnEnter;
  250. private final Participant.Status status;
  251. private final String uri;
  252. @JsonCreator
  253. private Participant(@JsonProperty("account_sid")
  254. final String accountSid,
  255. @JsonProperty("call_sid")
  256. final String callSid,
  257. @JsonProperty("label")
  258. final String label,
  259. @JsonProperty("call_sid_to_coach")
  260. final String callSidToCoach,
  261. @JsonProperty("coaching")
  262. final Boolean coaching,
  263. @JsonProperty("conference_sid")
  264. final String conferenceSid,
  265. @JsonProperty("date_created")
  266. final String dateCreated,
  267. @JsonProperty("date_updated")
  268. final String dateUpdated,
  269. @JsonProperty("end_conference_on_exit")
  270. final Boolean endConferenceOnExit,
  271. @JsonProperty("muted")
  272. final Boolean muted,
  273. @JsonProperty("hold")
  274. final Boolean hold,
  275. @JsonProperty("start_conference_on_enter")
  276. final Boolean startConferenceOnEnter,
  277. @JsonProperty("status")
  278. final Participant.Status status,
  279. @JsonProperty("uri")
  280. final String uri) {
  281. this.accountSid = accountSid;
  282. this.callSid = callSid;
  283. this.label = label;
  284. this.callSidToCoach = callSidToCoach;
  285. this.coaching = coaching;
  286. this.conferenceSid = conferenceSid;
  287. this.dateCreated = DateConverter.rfc2822DateTimeFromString(dateCreated);
  288. this.dateUpdated = DateConverter.rfc2822DateTimeFromString(dateUpdated);
  289. this.endConferenceOnExit = endConferenceOnExit;
  290. this.muted = muted;
  291. this.hold = hold;
  292. this.startConferenceOnEnter = startConferenceOnEnter;
  293. this.status = status;
  294. this.uri = uri;
  295. }
  296. /**
  297. * Returns The SID of the Account that created the resource.
  298. *
  299. * @return The SID of the Account that created the resource
  300. */
  301. public final String getAccountSid() {
  302. return this.accountSid;
  303. }
  304. /**
  305. * Returns The SID of the Call the resource is associated with.
  306. *
  307. * @return The SID of the Call the resource is associated with
  308. */
  309. public final String getCallSid() {
  310. return this.callSid;
  311. }
  312. /**
  313. * Returns The label of this participant.
  314. *
  315. * @return The label of this participant
  316. */
  317. public final String getLabel() {
  318. return this.label;
  319. }
  320. /**
  321. * Returns The SID of the participant who is being `coached`.
  322. *
  323. * @return The SID of the participant who is being `coached`
  324. */
  325. public final String getCallSidToCoach() {
  326. return this.callSidToCoach;
  327. }
  328. /**
  329. * Returns Indicates if the participant changed to coach.
  330. *
  331. * @return Indicates if the participant changed to coach
  332. */
  333. public final Boolean getCoaching() {
  334. return this.coaching;
  335. }
  336. /**
  337. * Returns The SID of the conference the participant is in.
  338. *
  339. * @return The SID of the conference the participant is in
  340. */
  341. public final String getConferenceSid() {
  342. return this.conferenceSid;
  343. }
  344. /**
  345. * Returns The RFC 2822 date and time in GMT that the resource was created.
  346. *
  347. * @return The RFC 2822 date and time in GMT that the resource was created
  348. */
  349. public final ZonedDateTime getDateCreated() {
  350. return this.dateCreated;
  351. }
  352. /**
  353. * Returns The RFC 2822 date and time in GMT that the resource was last updated.
  354. *
  355. * @return The RFC 2822 date and time in GMT that the resource was last updated
  356. */
  357. public final ZonedDateTime getDateUpdated() {
  358. return this.dateUpdated;
  359. }
  360. /**
  361. * Returns Whether the conference ends when the participant leaves.
  362. *
  363. * @return Whether the conference ends when the participant leaves
  364. */
  365. public final Boolean getEndConferenceOnExit() {
  366. return this.endConferenceOnExit;
  367. }
  368. /**
  369. * Returns Whether the participant is muted.
  370. *
  371. * @return Whether the participant is muted
  372. */
  373. public final Boolean getMuted() {
  374. return this.muted;
  375. }
  376. /**
  377. * Returns Whether the participant is on hold.
  378. *
  379. * @return Whether the participant is on hold
  380. */
  381. public final Boolean getHold() {
  382. return this.hold;
  383. }
  384. /**
  385. * Returns Whether the conference starts when the participant joins the
  386. * conference.
  387. *
  388. * @return Whether the conference starts when the participant joins the
  389. * conference
  390. */
  391. public final Boolean getStartConferenceOnEnter() {
  392. return this.startConferenceOnEnter;
  393. }
  394. /**
  395. * Returns The status of the participant's call in a session.
  396. *
  397. * @return The status of the participant's call in a session
  398. */
  399. public final Participant.Status getStatus() {
  400. return this.status;
  401. }
  402. /**
  403. * Returns The URI of the resource, relative to `https://api.twilio.com`.
  404. *
  405. * @return The URI of the resource, relative to `https://api.twilio.com`
  406. */
  407. public final String getUri() {
  408. return this.uri;
  409. }
  410. @Override
  411. public boolean equals(final Object o) {
  412. if (this == o) {
  413. return true;
  414. }
  415. if (o == null || getClass() != o.getClass()) {
  416. return false;
  417. }
  418. Participant other = (Participant) o;
  419. return Objects.equals(accountSid, other.accountSid) &&
  420. Objects.equals(callSid, other.callSid) &&
  421. Objects.equals(label, other.label) &&
  422. Objects.equals(callSidToCoach, other.callSidToCoach) &&
  423. Objects.equals(coaching, other.coaching) &&
  424. Objects.equals(conferenceSid, other.conferenceSid) &&
  425. Objects.equals(dateCreated, other.dateCreated) &&
  426. Objects.equals(dateUpdated, other.dateUpdated) &&
  427. Objects.equals(endConferenceOnExit, other.endConferenceOnExit) &&
  428. Objects.equals(muted, other.muted) &&
  429. Objects.equals(hold, other.hold) &&
  430. Objects.equals(startConferenceOnEnter, other.startConferenceOnEnter) &&
  431. Objects.equals(status, other.status) &&
  432. Objects.equals(uri, other.uri);
  433. }
  434. @Override
  435. public int hashCode() {
  436. return Objects.hash(accountSid,
  437. callSid,
  438. label,
  439. callSidToCoach,
  440. coaching,
  441. conferenceSid,
  442. dateCreated,
  443. dateUpdated,
  444. endConferenceOnExit,
  445. muted,
  446. hold,
  447. startConferenceOnEnter,
  448. status,
  449. uri);
  450. }
  451. }