Class AddressEndpointConfiguration
- java.lang.Object
-
- org.apache.camel.component.twilio.TwilioConfiguration
-
- org.apache.camel.component.twilio.AddressEndpointConfiguration
-
- All Implemented Interfaces:
Cloneable
@ApiParams(apiName="address",description="",apiMethods={@ApiMethod(methodName="creator",description="Create a AddressCreator to execute create",signatures={"com.twilio.rest.api.v2010.account.AddressCreator creator(String customerName, String street, String city, String region, String postalCode, String isoCountry)","com.twilio.rest.api.v2010.account.AddressCreator creator(String pathAccountSid, String customerName, String street, String city, String region, String postalCode, String isoCountry)"}),@ApiMethod(methodName="deleter",description="Create a AddressDeleter to execute delete",signatures={"com.twilio.rest.api.v2010.account.AddressDeleter deleter(String pathSid)","com.twilio.rest.api.v2010.account.AddressDeleter deleter(String pathAccountSid, String pathSid)"}),@ApiMethod(methodName="fetcher",description="Create a AddressFetcher to execute fetch",signatures={"com.twilio.rest.api.v2010.account.AddressFetcher fetcher(String pathSid)","com.twilio.rest.api.v2010.account.AddressFetcher fetcher(String pathAccountSid, String pathSid)"}),@ApiMethod(methodName="reader",description="Create a AddressReader to execute read",signatures={"com.twilio.rest.api.v2010.account.AddressReader reader()","com.twilio.rest.api.v2010.account.AddressReader reader(String pathAccountSid)"}),@ApiMethod(methodName="updater",description="Create a AddressUpdater to execute update",signatures={"com.twilio.rest.api.v2010.account.AddressUpdater updater(String pathSid)","com.twilio.rest.api.v2010.account.AddressUpdater updater(String pathAccountSid, String pathSid)"})},aliases={"^creator$=create","^deleter$=delete","^fetcher$=fetch","^reader$=read","^updater$=update"}) @UriParams @Configurer(extended=true) public final class AddressEndpointConfiguration extends TwilioConfiguration
Camel endpoint configuration forAddress
.
-
-
Constructor Summary
Constructors Constructor Description AddressEndpointConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCity()
String
getCustomerName()
String
getIsoCountry()
String
getPathAccountSid()
String
getPathSid()
String
getPostalCode()
String
getRegion()
String
getStreet()
void
setCity(String city)
void
setCustomerName(String customerName)
void
setIsoCountry(String isoCountry)
void
setPathAccountSid(String pathAccountSid)
void
setPathSid(String pathSid)
void
setPostalCode(String postalCode)
void
setRegion(String region)
void
setStreet(String street)
-
Methods inherited from class org.apache.camel.component.twilio.TwilioConfiguration
copy, getApiName, getMethodName, setApiName, setMethodName
-
-
-
-
Method Detail
-
getCity
public String getCity()
-
setCity
public void setCity(String city)
-
getCustomerName
public String getCustomerName()
-
setCustomerName
public void setCustomerName(String customerName)
-
getIsoCountry
public String getIsoCountry()
-
setIsoCountry
public void setIsoCountry(String isoCountry)
-
getPathAccountSid
public String getPathAccountSid()
-
setPathAccountSid
public void setPathAccountSid(String pathAccountSid)
-
getPathSid
public String getPathSid()
-
setPathSid
public void setPathSid(String pathSid)
-
getPostalCode
public String getPostalCode()
-
setPostalCode
public void setPostalCode(String postalCode)
-
getRegion
public String getRegion()
-
setRegion
public void setRegion(String region)
-
getStreet
public String getStreet()
-
setStreet
public void setStreet(String street)
-
-