
com.amazonaws.services.codecommit.model.GetMergeCommitRequest Maven / Gradle / Ivy
/*
* Copyright 2017-2022 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 GetMergeCommitRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The name of the repository that contains the merge commit about which you want to get information.
*
*/
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 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).
*
*/
private String destinationCommitSpecifier;
/**
*
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is
* considered not mergeable if the same file in both branches has differences on the same line.
*
*/
private String conflictDetailLevel;
/**
*
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions
* of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation
* is successful.
*
*/
private String conflictResolutionStrategy;
/**
*
* The name of the repository that contains the merge commit about which you want to get information.
*
*
* @param repositoryName
* The name of the repository that contains the merge commit about which you want to get information.
*/
public void setRepositoryName(String repositoryName) {
this.repositoryName = repositoryName;
}
/**
*
* The name of the repository that contains the merge commit about which you want to get information.
*
*
* @return The name of the repository that contains the merge commit about which you want to get information.
*/
public String getRepositoryName() {
return this.repositoryName;
}
/**
*
* The name of the repository that contains the merge commit about which you want to get information.
*
*
* @param repositoryName
* The name of the repository that contains the merge commit about which you want to get information.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetMergeCommitRequest 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 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 GetMergeCommitRequest withSourceCommitSpecifier(String sourceCommitSpecifier) {
setSourceCommitSpecifier(sourceCommitSpecifier);
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 GetMergeCommitRequest withDestinationCommitSpecifier(String destinationCommitSpecifier) {
setDestinationCommitSpecifier(destinationCommitSpecifier);
return this;
}
/**
*
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is
* considered not mergeable if the same file in both branches has differences on the same line.
*
*
* @param conflictDetailLevel
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a
* conflict is considered not mergeable if the same file in both branches has differences on the same line.
* @see ConflictDetailLevelTypeEnum
*/
public void setConflictDetailLevel(String conflictDetailLevel) {
this.conflictDetailLevel = conflictDetailLevel;
}
/**
*
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is
* considered not mergeable if the same file in both branches has differences on the same line.
*
*
* @return The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a
* conflict is considered not mergeable if the same file in both branches has differences on the same line.
* @see ConflictDetailLevelTypeEnum
*/
public String getConflictDetailLevel() {
return this.conflictDetailLevel;
}
/**
*
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is
* considered not mergeable if the same file in both branches has differences on the same line.
*
*
* @param conflictDetailLevel
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a
* conflict is considered not mergeable if the same file in both branches has differences on the same line.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ConflictDetailLevelTypeEnum
*/
public GetMergeCommitRequest withConflictDetailLevel(String conflictDetailLevel) {
setConflictDetailLevel(conflictDetailLevel);
return this;
}
/**
*
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is
* considered not mergeable if the same file in both branches has differences on the same line.
*
*
* @param conflictDetailLevel
* The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a
* not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a
* conflict is considered not mergeable if the same file in both branches has differences on the same line.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ConflictDetailLevelTypeEnum
*/
public GetMergeCommitRequest withConflictDetailLevel(ConflictDetailLevelTypeEnum conflictDetailLevel) {
this.conflictDetailLevel = conflictDetailLevel.toString();
return this;
}
/**
*
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions
* of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation
* is successful.
*
*
* @param conflictResolutionStrategy
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two
* versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the
* merge operation is successful.
* @see ConflictResolutionStrategyTypeEnum
*/
public void setConflictResolutionStrategy(String conflictResolutionStrategy) {
this.conflictResolutionStrategy = conflictResolutionStrategy;
}
/**
*
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions
* of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation
* is successful.
*
*
* @return Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two
* versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the
* merge operation is successful.
* @see ConflictResolutionStrategyTypeEnum
*/
public String getConflictResolutionStrategy() {
return this.conflictResolutionStrategy;
}
/**
*
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions
* of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation
* is successful.
*
*
* @param conflictResolutionStrategy
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two
* versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the
* merge operation is successful.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ConflictResolutionStrategyTypeEnum
*/
public GetMergeCommitRequest withConflictResolutionStrategy(String conflictResolutionStrategy) {
setConflictResolutionStrategy(conflictResolutionStrategy);
return this;
}
/**
*
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions
* of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation
* is successful.
*
*
* @param conflictResolutionStrategy
* Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two
* versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the
* merge operation is successful.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ConflictResolutionStrategyTypeEnum
*/
public GetMergeCommitRequest withConflictResolutionStrategy(ConflictResolutionStrategyTypeEnum conflictResolutionStrategy) {
this.conflictResolutionStrategy = conflictResolutionStrategy.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 (getSourceCommitSpecifier() != null)
sb.append("SourceCommitSpecifier: ").append(getSourceCommitSpecifier()).append(",");
if (getDestinationCommitSpecifier() != null)
sb.append("DestinationCommitSpecifier: ").append(getDestinationCommitSpecifier()).append(",");
if (getConflictDetailLevel() != null)
sb.append("ConflictDetailLevel: ").append(getConflictDetailLevel()).append(",");
if (getConflictResolutionStrategy() != null)
sb.append("ConflictResolutionStrategy: ").append(getConflictResolutionStrategy());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetMergeCommitRequest == false)
return false;
GetMergeCommitRequest other = (GetMergeCommitRequest) obj;
if (other.getRepositoryName() == null ^ this.getRepositoryName() == null)
return false;
if (other.getRepositoryName() != null && other.getRepositoryName().equals(this.getRepositoryName()) == 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.getDestinationCommitSpecifier() == null ^ this.getDestinationCommitSpecifier() == null)
return false;
if (other.getDestinationCommitSpecifier() != null && other.getDestinationCommitSpecifier().equals(this.getDestinationCommitSpecifier()) == false)
return false;
if (other.getConflictDetailLevel() == null ^ this.getConflictDetailLevel() == null)
return false;
if (other.getConflictDetailLevel() != null && other.getConflictDetailLevel().equals(this.getConflictDetailLevel()) == false)
return false;
if (other.getConflictResolutionStrategy() == null ^ this.getConflictResolutionStrategy() == null)
return false;
if (other.getConflictResolutionStrategy() != null && other.getConflictResolutionStrategy().equals(this.getConflictResolutionStrategy()) == 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 + ((getSourceCommitSpecifier() == null) ? 0 : getSourceCommitSpecifier().hashCode());
hashCode = prime * hashCode + ((getDestinationCommitSpecifier() == null) ? 0 : getDestinationCommitSpecifier().hashCode());
hashCode = prime * hashCode + ((getConflictDetailLevel() == null) ? 0 : getConflictDetailLevel().hashCode());
hashCode = prime * hashCode + ((getConflictResolutionStrategy() == null) ? 0 : getConflictResolutionStrategy().hashCode());
return hashCode;
}
@Override
public GetMergeCommitRequest clone() {
return (GetMergeCommitRequest) super.clone();
}
}