
software.amazon.awssdk.services.databasemigration.model.RefreshSchemasStatus Maven / Gradle / Ivy
/*
* Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.databasemigration.model;
import java.time.Instant;
import java.util.Optional;
import javax.annotation.Generated;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.core.protocol.ProtocolMarshaller;
import software.amazon.awssdk.core.protocol.StructuredPojo;
import software.amazon.awssdk.services.databasemigration.transform.RefreshSchemasStatusMarshaller;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
*/
@Generated("software.amazon.awssdk:codegen")
public class RefreshSchemasStatus implements StructuredPojo,
ToCopyableBuilder {
private final String endpointArn;
private final String replicationInstanceArn;
private final String status;
private final Instant lastRefreshDate;
private final String lastFailureMessage;
private RefreshSchemasStatus(BuilderImpl builder) {
this.endpointArn = builder.endpointArn;
this.replicationInstanceArn = builder.replicationInstanceArn;
this.status = builder.status;
this.lastRefreshDate = builder.lastRefreshDate;
this.lastFailureMessage = builder.lastFailureMessage;
}
/**
*
* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
*
*
* @return The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
*/
public String endpointArn() {
return endpointArn;
}
/**
*
* The Amazon Resource Name (ARN) of the replication instance.
*
*
* @return The Amazon Resource Name (ARN) of the replication instance.
*/
public String replicationInstanceArn() {
return replicationInstanceArn;
}
/**
*
* The status of the schema.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link RefreshSchemasStatusTypeValue#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is
* available from {@link #statusString}.
*
*
* @return The status of the schema.
* @see RefreshSchemasStatusTypeValue
*/
public RefreshSchemasStatusTypeValue status() {
return RefreshSchemasStatusTypeValue.fromValue(status);
}
/**
*
* The status of the schema.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link RefreshSchemasStatusTypeValue#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is
* available from {@link #statusString}.
*
*
* @return The status of the schema.
* @see RefreshSchemasStatusTypeValue
*/
public String statusString() {
return status;
}
/**
*
* The date the schema was last refreshed.
*
*
* @return The date the schema was last refreshed.
*/
public Instant lastRefreshDate() {
return lastRefreshDate;
}
/**
*
* The last failure message for the schema.
*
*
* @return The last failure message for the schema.
*/
public String lastFailureMessage() {
return lastFailureMessage;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + ((endpointArn() == null) ? 0 : endpointArn().hashCode());
hashCode = 31 * hashCode + ((replicationInstanceArn() == null) ? 0 : replicationInstanceArn().hashCode());
hashCode = 31 * hashCode + ((statusString() == null) ? 0 : statusString().hashCode());
hashCode = 31 * hashCode + ((lastRefreshDate() == null) ? 0 : lastRefreshDate().hashCode());
hashCode = 31 * hashCode + ((lastFailureMessage() == null) ? 0 : lastFailureMessage().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof RefreshSchemasStatus)) {
return false;
}
RefreshSchemasStatus other = (RefreshSchemasStatus) obj;
if (other.endpointArn() == null ^ this.endpointArn() == null) {
return false;
}
if (other.endpointArn() != null && !other.endpointArn().equals(this.endpointArn())) {
return false;
}
if (other.replicationInstanceArn() == null ^ this.replicationInstanceArn() == null) {
return false;
}
if (other.replicationInstanceArn() != null && !other.replicationInstanceArn().equals(this.replicationInstanceArn())) {
return false;
}
if (other.statusString() == null ^ this.statusString() == null) {
return false;
}
if (other.statusString() != null && !other.statusString().equals(this.statusString())) {
return false;
}
if (other.lastRefreshDate() == null ^ this.lastRefreshDate() == null) {
return false;
}
if (other.lastRefreshDate() != null && !other.lastRefreshDate().equals(this.lastRefreshDate())) {
return false;
}
if (other.lastFailureMessage() == null ^ this.lastFailureMessage() == null) {
return false;
}
if (other.lastFailureMessage() != null && !other.lastFailureMessage().equals(this.lastFailureMessage())) {
return false;
}
return true;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("{");
if (endpointArn() != null) {
sb.append("EndpointArn: ").append(endpointArn()).append(",");
}
if (replicationInstanceArn() != null) {
sb.append("ReplicationInstanceArn: ").append(replicationInstanceArn()).append(",");
}
if (statusString() != null) {
sb.append("Status: ").append(statusString()).append(",");
}
if (lastRefreshDate() != null) {
sb.append("LastRefreshDate: ").append(lastRefreshDate()).append(",");
}
if (lastFailureMessage() != null) {
sb.append("LastFailureMessage: ").append(lastFailureMessage()).append(",");
}
if (sb.length() > 1) {
sb.setLength(sb.length() - 1);
}
sb.append("}");
return sb.toString();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "EndpointArn":
return Optional.of(clazz.cast(endpointArn()));
case "ReplicationInstanceArn":
return Optional.of(clazz.cast(replicationInstanceArn()));
case "Status":
return Optional.of(clazz.cast(statusString()));
case "LastRefreshDate":
return Optional.of(clazz.cast(lastRefreshDate()));
case "LastFailureMessage":
return Optional.of(clazz.cast(lastFailureMessage()));
default:
return Optional.empty();
}
}
@SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
RefreshSchemasStatusMarshaller.getInstance().marshall(this, protocolMarshaller);
}
public interface Builder extends CopyableBuilder {
/**
*
* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
*
*
* @param endpointArn
* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder endpointArn(String endpointArn);
/**
*
* The Amazon Resource Name (ARN) of the replication instance.
*
*
* @param replicationInstanceArn
* The Amazon Resource Name (ARN) of the replication instance.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder replicationInstanceArn(String replicationInstanceArn);
/**
*
* The status of the schema.
*
*
* @param status
* The status of the schema.
* @see RefreshSchemasStatusTypeValue
* @return Returns a reference to this object so that method calls can be chained together.
* @see RefreshSchemasStatusTypeValue
*/
Builder status(String status);
/**
*
* The status of the schema.
*
*
* @param status
* The status of the schema.
* @see RefreshSchemasStatusTypeValue
* @return Returns a reference to this object so that method calls can be chained together.
* @see RefreshSchemasStatusTypeValue
*/
Builder status(RefreshSchemasStatusTypeValue status);
/**
*
* The date the schema was last refreshed.
*
*
* @param lastRefreshDate
* The date the schema was last refreshed.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder lastRefreshDate(Instant lastRefreshDate);
/**
*
* The last failure message for the schema.
*
*
* @param lastFailureMessage
* The last failure message for the schema.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder lastFailureMessage(String lastFailureMessage);
}
static final class BuilderImpl implements Builder {
private String endpointArn;
private String replicationInstanceArn;
private String status;
private Instant lastRefreshDate;
private String lastFailureMessage;
private BuilderImpl() {
}
private BuilderImpl(RefreshSchemasStatus model) {
endpointArn(model.endpointArn);
replicationInstanceArn(model.replicationInstanceArn);
status(model.status);
lastRefreshDate(model.lastRefreshDate);
lastFailureMessage(model.lastFailureMessage);
}
public final String getEndpointArn() {
return endpointArn;
}
@Override
public final Builder endpointArn(String endpointArn) {
this.endpointArn = endpointArn;
return this;
}
public final void setEndpointArn(String endpointArn) {
this.endpointArn = endpointArn;
}
public final String getReplicationInstanceArn() {
return replicationInstanceArn;
}
@Override
public final Builder replicationInstanceArn(String replicationInstanceArn) {
this.replicationInstanceArn = replicationInstanceArn;
return this;
}
public final void setReplicationInstanceArn(String replicationInstanceArn) {
this.replicationInstanceArn = replicationInstanceArn;
}
public final String getStatus() {
return status;
}
@Override
public final Builder status(String status) {
this.status = status;
return this;
}
@Override
public final Builder status(RefreshSchemasStatusTypeValue status) {
this.status(status.toString());
return this;
}
public final void setStatus(String status) {
this.status = status;
}
public final Instant getLastRefreshDate() {
return lastRefreshDate;
}
@Override
public final Builder lastRefreshDate(Instant lastRefreshDate) {
this.lastRefreshDate = lastRefreshDate;
return this;
}
public final void setLastRefreshDate(Instant lastRefreshDate) {
this.lastRefreshDate = lastRefreshDate;
}
public final String getLastFailureMessage() {
return lastFailureMessage;
}
@Override
public final Builder lastFailureMessage(String lastFailureMessage) {
this.lastFailureMessage = lastFailureMessage;
return this;
}
public final void setLastFailureMessage(String lastFailureMessage) {
this.lastFailureMessage = lastFailureMessage;
}
@Override
public RefreshSchemasStatus build() {
return new RefreshSchemasStatus(this);
}
}
}