![JAR search and dependency download from the Maven repository](/logo.png)
com.twilio.sdk.resource.api.v2010.account.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
Java helper library for Twilio services
The newest version!
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
package com.twilio.sdk.resource.api.v2010.account;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.base.MoreObjects;
import com.twilio.sdk.client.TwilioRestClient;
import com.twilio.sdk.converter.DateConverter;
import com.twilio.sdk.exception.ApiConnectionException;
import com.twilio.sdk.exception.ApiException;
import com.twilio.sdk.fetcher.api.v2010.account.AuthorizedConnectAppFetcher;
import com.twilio.sdk.http.HttpMethod;
import com.twilio.sdk.http.Request;
import com.twilio.sdk.http.Response;
import com.twilio.sdk.reader.api.v2010.account.AuthorizedConnectAppReader;
import com.twilio.sdk.resource.RestException;
import com.twilio.sdk.resource.SidResource;
import org.joda.time.DateTime;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.util.List;
import java.util.Map;
import java.util.Objects;
@JsonIgnoreProperties(ignoreUnknown = true)
public class AuthorizedConnectApp extends SidResource {
private static final long serialVersionUID = 77011834457452L;
public enum Permission {
GET_ALL("get-all"),
POST_ALL("post-all");
private final String value;
private Permission(final String value) {
this.value = value;
}
public String toString() {
return value;
}
/**
* Generate a Permission from a string.
* @param value string value
* @return generated Permission
*/
@JsonCreator
public static Permission forValue(final String value) {
String normalized = value.replace("-", "_").toUpperCase();
try {
return Permission.valueOf(normalized);
} catch (RuntimeException e) {
// Don't blow up of value does not exist
return null;
}
}
}
/**
* Create a AuthorizedConnectAppFetcher to execute fetch.
*
* @param accountSid The account_sid
* @param connectAppSid The connect_app_sid
* @return AuthorizedConnectAppFetcher capable of executing the fetch
*/
public static AuthorizedConnectAppFetcher fetch(final String accountSid,
final String connectAppSid) {
return new AuthorizedConnectAppFetcher(accountSid, connectAppSid);
}
/**
* Create a AuthorizedConnectAppReader to execute read.
*
* @param accountSid The account_sid
* @return AuthorizedConnectAppReader capable of executing the read
*/
public static AuthorizedConnectAppReader read(final String accountSid) {
return new AuthorizedConnectAppReader(accountSid);
}
/**
* Converts a JSON String into a AuthorizedConnectApp object using the provided
* ObjectMapper.
*
* @param json Raw JSON String
* @param objectMapper Jackson ObjectMapper
* @return AuthorizedConnectApp object represented by the provided JSON
*/
public static AuthorizedConnectApp fromJson(final String json, final ObjectMapper objectMapper) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, AuthorizedConnectApp.class);
} catch (final JsonMappingException | JsonParseException e) {
throw new ApiException(e.getMessage(), e);
} catch (final IOException e) {
throw new ApiConnectionException(e.getMessage(), e);
}
}
/**
* Converts a JSON InputStream into a AuthorizedConnectApp object using the
* provided ObjectMapper.
*
* @param json Raw JSON InputStream
* @param objectMapper Jackson ObjectMapper
* @return AuthorizedConnectApp object represented by the provided JSON
*/
public static AuthorizedConnectApp fromJson(final InputStream json, final ObjectMapper objectMapper) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, AuthorizedConnectApp.class);
} catch (final JsonMappingException | JsonParseException e) {
throw new ApiException(e.getMessage(), e);
} catch (final IOException e) {
throw new ApiConnectionException(e.getMessage(), e);
}
}
private final String accountSid;
private final String connectAppCompanyName;
private final String connectAppDescription;
private final String connectAppFriendlyName;
private final URI connectAppHomepageUrl;
private final String connectAppSid;
private final DateTime dateCreated;
private final DateTime dateUpdated;
private final List permissions;
private final String uri;
@JsonCreator
private AuthorizedConnectApp(@JsonProperty("account_sid")
final String accountSid,
@JsonProperty("connect_app_company_name")
final String connectAppCompanyName,
@JsonProperty("connect_app_description")
final String connectAppDescription,
@JsonProperty("connect_app_friendly_name")
final String connectAppFriendlyName,
@JsonProperty("connect_app_homepage_url")
final URI connectAppHomepageUrl,
@JsonProperty("connect_app_sid")
final String connectAppSid,
@JsonProperty("date_created")
final String dateCreated,
@JsonProperty("date_updated")
final String dateUpdated,
@JsonProperty("permissions")
final List permissions,
@JsonProperty("uri")
final String uri) {
this.accountSid = accountSid;
this.connectAppCompanyName = connectAppCompanyName;
this.connectAppDescription = connectAppDescription;
this.connectAppFriendlyName = connectAppFriendlyName;
this.connectAppHomepageUrl = connectAppHomepageUrl;
this.connectAppSid = connectAppSid;
this.dateCreated = DateConverter.rfc2822DateTimeFromString(dateCreated);
this.dateUpdated = DateConverter.rfc2822DateTimeFromString(dateUpdated);
this.permissions = permissions;
this.uri = uri;
}
/**
* Returns The A string that uniquely identifies this app.
*
* @return A string that uniquely identifies this app
*/
public final String getSid() {
return this.getConnectAppSid();
}
/**
* Returns The The unique sid that identifies this account.
*
* @return The unique sid that identifies this account
*/
public final String getAccountSid() {
return this.accountSid;
}
/**
* Returns The The company name set for this Connect App..
*
* @return The company name set for this Connect App.
*/
public final String getConnectAppCompanyName() {
return this.connectAppCompanyName;
}
/**
* Returns The Human readable description of the app.
*
* @return Human readable description of the app
*/
public final String getConnectAppDescription() {
return this.connectAppDescription;
}
/**
* Returns The A human readable name for the Connect App..
*
* @return A human readable name for the Connect App.
*/
public final String getConnectAppFriendlyName() {
return this.connectAppFriendlyName;
}
/**
* Returns The The public URL for this Connect App..
*
* @return The public URL for this Connect App.
*/
public final URI getConnectAppHomepageUrl() {
return this.connectAppHomepageUrl;
}
/**
* Returns The A string that uniquely identifies this app.
*
* @return A string that uniquely identifies this app
*/
public final String getConnectAppSid() {
return this.connectAppSid;
}
/**
* Returns The The date this resource was created.
*
* @return The date this resource was created
*/
public final DateTime getDateCreated() {
return this.dateCreated;
}
/**
* Returns The The date this resource was last updated.
*
* @return The date this resource was last updated
*/
public final DateTime getDateUpdated() {
return this.dateUpdated;
}
/**
* Returns The Permissions authorized to this app.
*
* @return Permissions authorized to this app
*/
public final List getPermissions() {
return this.permissions;
}
/**
* Returns The The URI for this resource.
*
* @return The URI for this resource
*/
public final String getUri() {
return this.uri;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AuthorizedConnectApp other = (AuthorizedConnectApp) o;
return Objects.equals(accountSid, other.accountSid) &&
Objects.equals(connectAppCompanyName, other.connectAppCompanyName) &&
Objects.equals(connectAppDescription, other.connectAppDescription) &&
Objects.equals(connectAppFriendlyName, other.connectAppFriendlyName) &&
Objects.equals(connectAppHomepageUrl, other.connectAppHomepageUrl) &&
Objects.equals(connectAppSid, other.connectAppSid) &&
Objects.equals(dateCreated, other.dateCreated) &&
Objects.equals(dateUpdated, other.dateUpdated) &&
Objects.equals(permissions, other.permissions) &&
Objects.equals(uri, other.uri);
}
@Override
public int hashCode() {
return Objects.hash(accountSid,
connectAppCompanyName,
connectAppDescription,
connectAppFriendlyName,
connectAppHomepageUrl,
connectAppSid,
dateCreated,
dateUpdated,
permissions,
uri);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("accountSid", accountSid)
.add("connectAppCompanyName", connectAppCompanyName)
.add("connectAppDescription", connectAppDescription)
.add("connectAppFriendlyName", connectAppFriendlyName)
.add("connectAppHomepageUrl", connectAppHomepageUrl)
.add("connectAppSid", connectAppSid)
.add("dateCreated", dateCreated)
.add("dateUpdated", dateUpdated)
.add("permissions", permissions)
.add("uri", uri)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy