software.amazon.awssdk.aws.greengrass.model.MQTTCredential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-iot-device-sdk Show documentation
Show all versions of aws-iot-device-sdk Show documentation
Java bindings for the AWS IoT Core Service
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*
* This file is generated.
*/
package software.amazon.awssdk.aws.greengrass.model;
import com.google.gson.annotations.Expose;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.eventstreamrpc.model.EventStreamJsonMessage;
public class MQTTCredential implements EventStreamJsonMessage {
public static final String APPLICATION_MODEL_TYPE = "aws.greengrass#MQTTCredential";
public static final MQTTCredential VOID;
static {
VOID = new MQTTCredential() {
@Override
public boolean isVoid() {
return true;
}
};
}
@Expose(
serialize = true,
deserialize = true
)
private Optional clientId;
@Expose(
serialize = true,
deserialize = true
)
private Optional certificatePem;
@Expose(
serialize = true,
deserialize = true
)
private Optional username;
@Expose(
serialize = true,
deserialize = true
)
private Optional password;
public MQTTCredential() {
this.clientId = Optional.empty();
this.certificatePem = Optional.empty();
this.username = Optional.empty();
this.password = Optional.empty();
}
/**
* The client ID to used to connect.
*/
public String getClientId() {
if (clientId.isPresent()) {
return clientId.get();
}
return null;
}
/**
* The client ID to used to connect.
*/
public void setClientId(final String clientId) {
this.clientId = Optional.ofNullable(clientId);
}
/**
* The client ID to used to connect.
*/
public MQTTCredential withClientId(final String clientId) {
setClientId(clientId);
return this;
}
/**
* The client certificate in pem format.
*/
public String getCertificatePem() {
if (certificatePem.isPresent()) {
return certificatePem.get();
}
return null;
}
/**
* The client certificate in pem format.
*/
public void setCertificatePem(final String certificatePem) {
this.certificatePem = Optional.ofNullable(certificatePem);
}
/**
* The client certificate in pem format.
*/
public MQTTCredential withCertificatePem(final String certificatePem) {
setCertificatePem(certificatePem);
return this;
}
/**
* The username. (unused).
*/
public String getUsername() {
if (username.isPresent()) {
return username.get();
}
return null;
}
/**
* The username. (unused).
*/
public void setUsername(final String username) {
this.username = Optional.ofNullable(username);
}
/**
* The username. (unused).
*/
public MQTTCredential withUsername(final String username) {
setUsername(username);
return this;
}
/**
* The password. (unused).
*/
public String getPassword() {
if (password.isPresent()) {
return password.get();
}
return null;
}
/**
* The password. (unused).
*/
public void setPassword(final String password) {
this.password = Optional.ofNullable(password);
}
/**
* The password. (unused).
*/
public MQTTCredential withPassword(final String password) {
setPassword(password);
return this;
}
@Override
public String getApplicationModelType() {
return APPLICATION_MODEL_TYPE;
}
@Override
public boolean equals(Object rhs) {
if (rhs == null) return false;
if (!(rhs instanceof MQTTCredential)) return false;
if (this == rhs) return true;
final MQTTCredential other = (MQTTCredential)rhs;
boolean isEquals = true;
isEquals = isEquals && this.clientId.equals(other.clientId);
isEquals = isEquals && this.certificatePem.equals(other.certificatePem);
isEquals = isEquals && this.username.equals(other.username);
isEquals = isEquals && this.password.equals(other.password);
return isEquals;
}
@Override
public int hashCode() {
return Objects.hash(clientId, certificatePem, username, password);
}
}