All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.sms.model.StartOnDemandReplicationRunResponse Maven / Gradle / Ivy

/*
 * Copyright 2013-2018 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.sms.model;

import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class StartOnDemandReplicationRunResponse extends SmsResponse implements
        ToCopyableBuilder {
    private final String replicationRunId;

    private StartOnDemandReplicationRunResponse(BuilderImpl builder) {
        super(builder);
        this.replicationRunId = builder.replicationRunId;
    }

    /**
     * Returns the value of the ReplicationRunId property for this object.
     * 
     * @return The value of the ReplicationRunId property for this object.
     */
    public String replicationRunId() {
        return replicationRunId;
    }

    @Override
    public Builder toBuilder() {
        return new BuilderImpl(this);
    }

    public static Builder builder() {
        return new BuilderImpl();
    }

    public static Class serializableBuilderClass() {
        return BuilderImpl.class;
    }

    @Override
    public int hashCode() {
        int hashCode = 1;
        hashCode = 31 * hashCode + Objects.hashCode(replicationRunId());
        return hashCode;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (!(obj instanceof StartOnDemandReplicationRunResponse)) {
            return false;
        }
        StartOnDemandReplicationRunResponse other = (StartOnDemandReplicationRunResponse) obj;
        return Objects.equals(replicationRunId(), other.replicationRunId());
    }

    @Override
    public String toString() {
        return ToString.builder("StartOnDemandReplicationRunResponse").add("ReplicationRunId", replicationRunId()).build();
    }

    public  Optional getValueForField(String fieldName, Class clazz) {
        switch (fieldName) {
        case "replicationRunId":
            return Optional.ofNullable(clazz.cast(replicationRunId()));
        default:
            return Optional.empty();
        }
    }

    public interface Builder extends SmsResponse.Builder, CopyableBuilder {
        /**
         * Sets the value of the ReplicationRunId property for this object.
         *
         * @param replicationRunId
         *        The new value for the ReplicationRunId property for this object.
         * @return Returns a reference to this object so that method calls can be chained together.
         */
        Builder replicationRunId(String replicationRunId);
    }

    static final class BuilderImpl extends SmsResponse.BuilderImpl implements Builder {
        private String replicationRunId;

        private BuilderImpl() {
        }

        private BuilderImpl(StartOnDemandReplicationRunResponse model) {
            super(model);
            replicationRunId(model.replicationRunId);
        }

        public final String getReplicationRunId() {
            return replicationRunId;
        }

        @Override
        public final Builder replicationRunId(String replicationRunId) {
            this.replicationRunId = replicationRunId;
            return this;
        }

        public final void setReplicationRunId(String replicationRunId) {
            this.replicationRunId = replicationRunId;
        }

        @Override
        public StartOnDemandReplicationRunResponse build() {
            return new StartOnDemandReplicationRunResponse(this);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy