com.twilio.rest.preview.deployedDevices.fleet.Key Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
package com.twilio.rest.preview.deployedDevices.fleet;
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.base.Resource;
import com.twilio.converter.DateConverter;
import com.twilio.exception.ApiConnectionException;
import com.twilio.exception.ApiException;
import com.twilio.exception.RestException;
import com.twilio.http.HttpMethod;
import com.twilio.http.Request;
import com.twilio.http.Response;
import com.twilio.http.TwilioRestClient;
import com.twilio.rest.Domains;
import org.joda.time.DateTime;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.util.Map;
import java.util.Objects;
/**
* PLEASE NOTE that this class contains preview products that are subject to
* change. Use them with caution. If you currently do not have developer preview
* access, please contact [email protected].
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Key extends Resource {
private static final long serialVersionUID = 62747134946875L;
/**
* Create a KeyFetcher to execute fetch.
*
* @param pathFleetSid The fleet_sid
* @param pathSid A string that uniquely identifies the Key.
* @return KeyFetcher capable of executing the fetch
*/
public static KeyFetcher fetcher(final String pathFleetSid,
final String pathSid) {
return new KeyFetcher(pathFleetSid, pathSid);
}
/**
* Create a KeyDeleter to execute delete.
*
* @param pathFleetSid The fleet_sid
* @param pathSid A string that uniquely identifies the Key.
* @return KeyDeleter capable of executing the delete
*/
public static KeyDeleter deleter(final String pathFleetSid,
final String pathSid) {
return new KeyDeleter(pathFleetSid, pathSid);
}
/**
* Create a KeyCreator to execute create.
*
* @param pathFleetSid The fleet_sid
* @return KeyCreator capable of executing the create
*/
public static KeyCreator creator(final String pathFleetSid) {
return new KeyCreator(pathFleetSid);
}
/**
* Create a KeyReader to execute read.
*
* @param pathFleetSid The fleet_sid
* @return KeyReader capable of executing the read
*/
public static KeyReader reader(final String pathFleetSid) {
return new KeyReader(pathFleetSid);
}
/**
* Create a KeyUpdater to execute update.
*
* @param pathFleetSid The fleet_sid
* @param pathSid A string that uniquely identifies the Key.
* @return KeyUpdater capable of executing the update
*/
public static KeyUpdater updater(final String pathFleetSid,
final String pathSid) {
return new KeyUpdater(pathFleetSid, pathSid);
}
/**
* Converts a JSON String into a Key object using the provided ObjectMapper.
*
* @param json Raw JSON String
* @param objectMapper Jackson ObjectMapper
* @return Key object represented by the provided JSON
*/
public static Key fromJson(final String json, final ObjectMapper objectMapper) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, Key.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 Key object using the provided
* ObjectMapper.
*
* @param json Raw JSON InputStream
* @param objectMapper Jackson ObjectMapper
* @return Key object represented by the provided JSON
*/
public static Key fromJson(final InputStream json, final ObjectMapper objectMapper) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, Key.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 sid;
private final URI url;
private final String friendlyName;
private final String fleetSid;
private final String accountSid;
private final String deviceSid;
private final String secret;
private final DateTime dateCreated;
private final DateTime dateUpdated;
@JsonCreator
private Key(@JsonProperty("sid")
final String sid,
@JsonProperty("url")
final URI url,
@JsonProperty("friendly_name")
final String friendlyName,
@JsonProperty("fleet_sid")
final String fleetSid,
@JsonProperty("account_sid")
final String accountSid,
@JsonProperty("device_sid")
final String deviceSid,
@JsonProperty("secret")
final String secret,
@JsonProperty("date_created")
final String dateCreated,
@JsonProperty("date_updated")
final String dateUpdated) {
this.sid = sid;
this.url = url;
this.friendlyName = friendlyName;
this.fleetSid = fleetSid;
this.accountSid = accountSid;
this.deviceSid = deviceSid;
this.secret = secret;
this.dateCreated = DateConverter.iso8601DateTimeFromString(dateCreated);
this.dateUpdated = DateConverter.iso8601DateTimeFromString(dateUpdated);
}
/**
* Returns The A string that uniquely identifies this Key..
*
* @return A string that uniquely identifies this Key.
*/
public final String getSid() {
return this.sid;
}
/**
* Returns The URL of this Key..
*
* @return URL of this Key.
*/
public final URI getUrl() {
return this.url;
}
/**
* Returns The A human readable description for this Key..
*
* @return A human readable description for this Key.
*/
public final String getFriendlyName() {
return this.friendlyName;
}
/**
* Returns The The unique identifier of the Fleet..
*
* @return The unique identifier of the Fleet.
*/
public final String getFleetSid() {
return this.fleetSid;
}
/**
* 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 unique identifier of a mapped Device..
*
* @return The unique identifier of a mapped Device.
*/
public final String getDeviceSid() {
return this.deviceSid;
}
/**
* Returns The The key secret..
*
* @return The key secret.
*/
public final String getSecret() {
return this.secret;
}
/**
* Returns The The date this Key credential was created..
*
* @return The date this Key credential was created.
*/
public final DateTime getDateCreated() {
return this.dateCreated;
}
/**
* Returns The The date this Key credential was updated..
*
* @return The date this Key credential was updated.
*/
public final DateTime getDateUpdated() {
return this.dateUpdated;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Key other = (Key) o;
return Objects.equals(sid, other.sid) &&
Objects.equals(url, other.url) &&
Objects.equals(friendlyName, other.friendlyName) &&
Objects.equals(fleetSid, other.fleetSid) &&
Objects.equals(accountSid, other.accountSid) &&
Objects.equals(deviceSid, other.deviceSid) &&
Objects.equals(secret, other.secret) &&
Objects.equals(dateCreated, other.dateCreated) &&
Objects.equals(dateUpdated, other.dateUpdated);
}
@Override
public int hashCode() {
return Objects.hash(sid,
url,
friendlyName,
fleetSid,
accountSid,
deviceSid,
secret,
dateCreated,
dateUpdated);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("sid", sid)
.add("url", url)
.add("friendlyName", friendlyName)
.add("fleetSid", fleetSid)
.add("accountSid", accountSid)
.add("deviceSid", deviceSid)
.add("secret", secret)
.add("dateCreated", dateCreated)
.add("dateUpdated", dateUpdated)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy