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

com.amazonaws.services.codecommit.model.GetMergeConflictsRequest Maven / Gradle / Ivy

/*
 * Copyright 2014-2019 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 com.amazonaws.services.codecommit.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetMergeConflictsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the repository where the pull request was created. *

*/ private String repositoryName; /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

*/ private String destinationCommitSpecifier; /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

*/ private String sourceCommitSpecifier; /** *

* The merge option or strategy you want to use to merge the code. The only valid value is FAST_FORWARD_MERGE. *

*/ private String mergeOption; /** *

* The name of the repository where the pull request was created. *

* * @param repositoryName * The name of the repository where the pull request was created. */ public void setRepositoryName(String repositoryName) { this.repositoryName = repositoryName; } /** *

* The name of the repository where the pull request was created. *

* * @return The name of the repository where the pull request was created. */ public String getRepositoryName() { return this.repositoryName; } /** *

* The name of the repository where the pull request was created. *

* * @param repositoryName * The name of the repository where the pull request was created. * @return Returns a reference to this object so that method calls can be chained together. */ public GetMergeConflictsRequest withRepositoryName(String repositoryName) { setRepositoryName(repositoryName); return this; } /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

* * @param destinationCommitSpecifier * The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch * name or a full commit ID. */ public void setDestinationCommitSpecifier(String destinationCommitSpecifier) { this.destinationCommitSpecifier = destinationCommitSpecifier; } /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

* * @return The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a * branch name or a full commit ID. */ public String getDestinationCommitSpecifier() { return this.destinationCommitSpecifier; } /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

* * @param destinationCommitSpecifier * The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch * name or a full commit ID. * @return Returns a reference to this object so that method calls can be chained together. */ public GetMergeConflictsRequest withDestinationCommitSpecifier(String destinationCommitSpecifier) { setDestinationCommitSpecifier(destinationCommitSpecifier); return this; } /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

* * @param sourceCommitSpecifier * The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch * name or a full commit ID. */ public void setSourceCommitSpecifier(String sourceCommitSpecifier) { this.sourceCommitSpecifier = sourceCommitSpecifier; } /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

* * @return The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a * branch name or a full commit ID. */ public String getSourceCommitSpecifier() { return this.sourceCommitSpecifier; } /** *

* The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name * or a full commit ID. *

* * @param sourceCommitSpecifier * The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch * name or a full commit ID. * @return Returns a reference to this object so that method calls can be chained together. */ public GetMergeConflictsRequest withSourceCommitSpecifier(String sourceCommitSpecifier) { setSourceCommitSpecifier(sourceCommitSpecifier); return this; } /** *

* The merge option or strategy you want to use to merge the code. The only valid value is FAST_FORWARD_MERGE. *

* * @param mergeOption * The merge option or strategy you want to use to merge the code. The only valid value is * FAST_FORWARD_MERGE. * @see MergeOptionTypeEnum */ public void setMergeOption(String mergeOption) { this.mergeOption = mergeOption; } /** *

* The merge option or strategy you want to use to merge the code. The only valid value is FAST_FORWARD_MERGE. *

* * @return The merge option or strategy you want to use to merge the code. The only valid value is * FAST_FORWARD_MERGE. * @see MergeOptionTypeEnum */ public String getMergeOption() { return this.mergeOption; } /** *

* The merge option or strategy you want to use to merge the code. The only valid value is FAST_FORWARD_MERGE. *

* * @param mergeOption * The merge option or strategy you want to use to merge the code. The only valid value is * FAST_FORWARD_MERGE. * @return Returns a reference to this object so that method calls can be chained together. * @see MergeOptionTypeEnum */ public GetMergeConflictsRequest withMergeOption(String mergeOption) { setMergeOption(mergeOption); return this; } /** *

* The merge option or strategy you want to use to merge the code. The only valid value is FAST_FORWARD_MERGE. *

* * @param mergeOption * The merge option or strategy you want to use to merge the code. The only valid value is * FAST_FORWARD_MERGE. * @return Returns a reference to this object so that method calls can be chained together. * @see MergeOptionTypeEnum */ public GetMergeConflictsRequest withMergeOption(MergeOptionTypeEnum mergeOption) { this.mergeOption = mergeOption.toString(); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getRepositoryName() != null) sb.append("RepositoryName: ").append(getRepositoryName()).append(","); if (getDestinationCommitSpecifier() != null) sb.append("DestinationCommitSpecifier: ").append(getDestinationCommitSpecifier()).append(","); if (getSourceCommitSpecifier() != null) sb.append("SourceCommitSpecifier: ").append(getSourceCommitSpecifier()).append(","); if (getMergeOption() != null) sb.append("MergeOption: ").append(getMergeOption()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetMergeConflictsRequest == false) return false; GetMergeConflictsRequest other = (GetMergeConflictsRequest) obj; if (other.getRepositoryName() == null ^ this.getRepositoryName() == null) return false; if (other.getRepositoryName() != null && other.getRepositoryName().equals(this.getRepositoryName()) == false) return false; if (other.getDestinationCommitSpecifier() == null ^ this.getDestinationCommitSpecifier() == null) return false; if (other.getDestinationCommitSpecifier() != null && other.getDestinationCommitSpecifier().equals(this.getDestinationCommitSpecifier()) == false) return false; if (other.getSourceCommitSpecifier() == null ^ this.getSourceCommitSpecifier() == null) return false; if (other.getSourceCommitSpecifier() != null && other.getSourceCommitSpecifier().equals(this.getSourceCommitSpecifier()) == false) return false; if (other.getMergeOption() == null ^ this.getMergeOption() == null) return false; if (other.getMergeOption() != null && other.getMergeOption().equals(this.getMergeOption()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRepositoryName() == null) ? 0 : getRepositoryName().hashCode()); hashCode = prime * hashCode + ((getDestinationCommitSpecifier() == null) ? 0 : getDestinationCommitSpecifier().hashCode()); hashCode = prime * hashCode + ((getSourceCommitSpecifier() == null) ? 0 : getSourceCommitSpecifier().hashCode()); hashCode = prime * hashCode + ((getMergeOption() == null) ? 0 : getMergeOption().hashCode()); return hashCode; } @Override public GetMergeConflictsRequest clone() { return (GetMergeConflictsRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy