software.amazon.awssdk.services.sms.model.GetReplicationRunsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of servermigration Show documentation
Show all versions of servermigration Show documentation
The AWS Java SDK for AWS Server Migration module holds the client classes that are used for
communicating with AWS Server Migration Service
/*
* 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.sms.model;
import javax.annotation.Generated;
import software.amazon.awssdk.AmazonWebServiceRequest;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public class GetReplicationRunsRequest extends AmazonWebServiceRequest implements
ToCopyableBuilder {
private final String replicationJobId;
private final String nextToken;
private final Integer maxResults;
private GetReplicationRunsRequest(BuilderImpl builder) {
this.replicationJobId = builder.replicationJobId;
this.nextToken = builder.nextToken;
this.maxResults = builder.maxResults;
}
/**
*
* @return
*/
public String replicationJobId() {
return replicationJobId;
}
/**
*
* @return
*/
public String nextToken() {
return nextToken;
}
/**
*
* @return
*/
public Integer maxResults() {
return maxResults;
}
@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 + ((replicationJobId() == null) ? 0 : replicationJobId().hashCode());
hashCode = 31 * hashCode + ((nextToken() == null) ? 0 : nextToken().hashCode());
hashCode = 31 * hashCode + ((maxResults() == null) ? 0 : maxResults().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof GetReplicationRunsRequest)) {
return false;
}
GetReplicationRunsRequest other = (GetReplicationRunsRequest) obj;
if (other.replicationJobId() == null ^ this.replicationJobId() == null) {
return false;
}
if (other.replicationJobId() != null && !other.replicationJobId().equals(this.replicationJobId())) {
return false;
}
if (other.nextToken() == null ^ this.nextToken() == null) {
return false;
}
if (other.nextToken() != null && !other.nextToken().equals(this.nextToken())) {
return false;
}
if (other.maxResults() == null ^ this.maxResults() == null) {
return false;
}
if (other.maxResults() != null && !other.maxResults().equals(this.maxResults())) {
return false;
}
return true;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (replicationJobId() != null) {
sb.append("ReplicationJobId: ").append(replicationJobId()).append(",");
}
if (nextToken() != null) {
sb.append("NextToken: ").append(nextToken()).append(",");
}
if (maxResults() != null) {
sb.append("MaxResults: ").append(maxResults()).append(",");
}
sb.append("}");
return sb.toString();
}
public interface Builder extends CopyableBuilder {
/**
*
* @param replicationJobId
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder replicationJobId(String replicationJobId);
/**
*
* @param nextToken
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder nextToken(String nextToken);
/**
*
* @param maxResults
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder maxResults(Integer maxResults);
}
private static final class BuilderImpl implements Builder {
private String replicationJobId;
private String nextToken;
private Integer maxResults;
private BuilderImpl() {
}
private BuilderImpl(GetReplicationRunsRequest model) {
setReplicationJobId(model.replicationJobId);
setNextToken(model.nextToken);
setMaxResults(model.maxResults);
}
public final String getReplicationJobId() {
return replicationJobId;
}
@Override
public final Builder replicationJobId(String replicationJobId) {
this.replicationJobId = replicationJobId;
return this;
}
public final void setReplicationJobId(String replicationJobId) {
this.replicationJobId = replicationJobId;
}
public final String getNextToken() {
return nextToken;
}
@Override
public final Builder nextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public final void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public final Integer getMaxResults() {
return maxResults;
}
@Override
public final Builder maxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public final void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
@Override
public GetReplicationRunsRequest build() {
return new GetReplicationRunsRequest(this);
}
}
}