com.twilio.sdk.resource.instance.AuthorizedConnectApp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Release Candidate for Next-Gen Twilio Java Helper Library
package com.twilio.sdk.resource.instance;
import com.twilio.sdk.TwilioRestClient;
import com.twilio.sdk.resource.InstanceResource;
import java.util.List;
import java.util.Map;
/**
* The AuthorizedConnectApps list resource shows all of the Connect Apps that
* you have authorized for your account. Each Connect App corresponds to a
* subaccount within your Twilio account, which acts as that Connect App's
* sandbox. The instance resource shows you the permissions you have granted for
* a Connect App as well as information about the Connect App itself.
*
*
*
* For more information see https://www.twilio.com/docs/api/rest/authorized-connect-apps
*/
public class AuthorizedConnectApp extends InstanceResource {
/** The Constant SID_PROPERTY. */
private static final String SID_PROPERTY = "connect_app_sid";
/**
* Instantiates a new application.
*
* @param client
* the client
*/
public AuthorizedConnectApp(TwilioRestClient client) {
super(client);
}
/**
* Instantiates a new application.
*
* @param client
* the client
* @param sid
* the sid
*/
public AuthorizedConnectApp(TwilioRestClient client, String sid) {
super(client);
if (sid == null) {
throw new IllegalStateException("The Sid for an AuthorizedConnectApp can not be null");
}
this.setProperty(SID_PROPERTY, sid);
}
/**
* Instantiates a new application.
*
* @param client
* the client
* @param properties
* the properties
*/
public AuthorizedConnectApp(TwilioRestClient client,
Map properties) {
super(client, properties);
}
/*
* (non-Javadoc)
*
* @see com.twilio.sdk.resource.Resource#getResourceLocation()
*/
@Override
protected String getResourceLocation() {
return "/" + TwilioRestClient.DEFAULT_VERSION + "/Accounts/"
+ this.getRequestAccountSid() + "/AuthorizedConnectApps/" + this.getSid()
+ ".json";
}
/*
* Property getters
*/
/**
* Gets the sid.
*
* @return the sid
*/
public String getSid() {
return this.getProperty(SID_PROPERTY);
}
/**
* Gets the sid. In this case AuthorizedConnectApps don't have a Sid, they
* have a ConnectAppSid so we provide two helper functions that return the
* same value.
*
* @return the sid
*/
public String getConnectAppSid() {
return this.getProperty(SID_PROPERTY);
}
/**
* Gets the account sid.
*
* @return the account sid
*/
public String getAccountSid() {
return this.getProperty("account_sid");
}
/**
* Gets the friendly name.
*
* @return the friendly name
*/
public String getFriendlyName() {
return this.getProperty("connect_app_friendly_name");
}
/**
* Gets the description.
*
* @return the description
*/
public String getDescription() {
return this.getProperty("connect_app_description");
}
/**
* Gets the description.
*
* @return the description
*/
public String getConnectAppDescription() {
return this.getProperty("connect_app_description");
}
/**
* Get the connect app friendly name.
*
* @return the connect app friendly name
*/
public String getConnectAppFriendlyName() {
return this.getProperty("connect_app_friendly_name");
}
/**
* Gets the company name.
*
* @return the company name
*/
public String getCompanyName() {
return this.getProperty("connect_app_company_name");
}
/**
* Gets the company name.
*
* @return the company name
*/
public String getConnectAppCompanyName() {
return this.getProperty("connect_app_company_name");
}
/**
* Gets the homepage url.
*
* @return the homepage url
*/
public String getHomepageUrl() {
return this.getProperty("connect_app_homepage_url");
}
/**
* Gets the homepage url.
*
* @return the homepage url
*/
public String getConnectAppHomepageUrl() {
return this.getProperty("connect_app_homepage_url");
}
public List getPermissions() {
Object obj = this.getObject("permissions");
return (List) obj;
}
}