001 002/* 003 * Copyright (C) 2011 Archie L. Cobbs. All rights reserved. 004 * 005 * $Id$ 006 */ 007 008package org.dellroad.jibxbindings.twilio.restapi; 009 010import java.net.URI; 011 012/** 013 * Represents an <code><SubresourceUris></code> element. 014 * Some of these properties are only approppriate for certain containing elements. 015 */ 016public class SubresourceUris { 017 018 private URI availablePhoneNumbers; 019 private URI calls; 020 private URI conferences; 021 private URI incomingPhoneNumbers; 022 private URI notifications; 023 private URI outgoingCallerIds; 024 private URI recordings; 025 private URI sandbox; 026 private URI smsMessages; 027 private URI messages; 028 private URI media; 029 private URI transcriptions; 030 private URI participants; 031 032 public URI getAvailablePhoneNumbers() { 033 return this.availablePhoneNumbers; 034 } 035 public void setAvailablePhoneNumbers(URI availablePhoneNumbers) { 036 this.availablePhoneNumbers = availablePhoneNumbers; 037 } 038 039 public URI getCalls() { 040 return this.calls; 041 } 042 public void setCalls(URI calls) { 043 this.calls = calls; 044 } 045 046 public URI getConferences() { 047 return this.conferences; 048 } 049 public void setConferences(URI conferences) { 050 this.conferences = conferences; 051 } 052 053 public URI getIncomingPhoneNumbers() { 054 return this.incomingPhoneNumbers; 055 } 056 public void setIncomingPhoneNumbers(URI incomingPhoneNumbers) { 057 this.incomingPhoneNumbers = incomingPhoneNumbers; 058 } 059 060 public URI getNotifications() { 061 return this.notifications; 062 } 063 public void setNotifications(URI notifications) { 064 this.notifications = notifications; 065 } 066 067 public URI getOutgoingCallerIds() { 068 return this.outgoingCallerIds; 069 } 070 public void setOutgoingCallerIds(URI outgoingCallerIds) { 071 this.outgoingCallerIds = outgoingCallerIds; 072 } 073 074 public URI getRecordings() { 075 return this.recordings; 076 } 077 public void setRecordings(URI recordings) { 078 this.recordings = recordings; 079 } 080 081 public URI getSandbox() { 082 return this.sandbox; 083 } 084 public void setSandbox(URI sandbox) { 085 this.sandbox = sandbox; 086 } 087 088 public URI getSMSMessages() { 089 return this.smsMessages; 090 } 091 public void setSMSMessages(URI smsMessages) { 092 this.smsMessages = smsMessages; 093 } 094 095 public URI getMessages() { 096 return this.messages; 097 } 098 public void setMessages(URI messages) { 099 this.messages = messages; 100 } 101 102 public URI getMedia() { 103 return this.media; 104 } 105 public void setMedia(URI media) { 106 this.media = media; 107 } 108 109 public URI getTranscriptions() { 110 return this.transcriptions; 111 } 112 public void setTranscriptions(URI transcriptions) { 113 this.transcriptions = transcriptions; 114 } 115 116 public URI getParticipants() { 117 return this.participants; 118 } 119 public void setParticipants(URI participants) { 120 this.participants = participants; 121 } 122} 123