/* * Copyright 2018-2023 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.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Returns information about a submodule reference in a repository folder. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SubModule implements Serializable, Cloneable, StructuredPojo { /** ** The commit ID that contains the reference to the submodule. *
*/ private String commitId; /** ** The fully qualified path to the folder that contains the reference to the submodule. *
*/ private String absolutePath; /** ** The relative path of the submodule from the folder where the query originated. *
*/ private String relativePath; /** ** The commit ID that contains the reference to the submodule. *
* * @param commitId * The commit ID that contains the reference to the submodule. */ public void setCommitId(String commitId) { this.commitId = commitId; } /** ** The commit ID that contains the reference to the submodule. *
* * @return The commit ID that contains the reference to the submodule. */ public String getCommitId() { return this.commitId; } /** ** The commit ID that contains the reference to the submodule. *
* * @param commitId * The commit ID that contains the reference to the submodule. * @return Returns a reference to this object so that method calls can be chained together. */ public SubModule withCommitId(String commitId) { setCommitId(commitId); return this; } /** ** The fully qualified path to the folder that contains the reference to the submodule. *
* * @param absolutePath * The fully qualified path to the folder that contains the reference to the submodule. */ public void setAbsolutePath(String absolutePath) { this.absolutePath = absolutePath; } /** ** The fully qualified path to the folder that contains the reference to the submodule. *
* * @return The fully qualified path to the folder that contains the reference to the submodule. */ public String getAbsolutePath() { return this.absolutePath; } /** ** The fully qualified path to the folder that contains the reference to the submodule. *
* * @param absolutePath * The fully qualified path to the folder that contains the reference to the submodule. * @return Returns a reference to this object so that method calls can be chained together. */ public SubModule withAbsolutePath(String absolutePath) { setAbsolutePath(absolutePath); return this; } /** ** The relative path of the submodule from the folder where the query originated. *
* * @param relativePath * The relative path of the submodule from the folder where the query originated. */ public void setRelativePath(String relativePath) { this.relativePath = relativePath; } /** ** The relative path of the submodule from the folder where the query originated. *
* * @return The relative path of the submodule from the folder where the query originated. */ public String getRelativePath() { return this.relativePath; } /** ** The relative path of the submodule from the folder where the query originated. *
* * @param relativePath * The relative path of the submodule from the folder where the query originated. * @return Returns a reference to this object so that method calls can be chained together. */ public SubModule withRelativePath(String relativePath) { setRelativePath(relativePath); 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 (getCommitId() != null) sb.append("CommitId: ").append(getCommitId()).append(","); if (getAbsolutePath() != null) sb.append("AbsolutePath: ").append(getAbsolutePath()).append(","); if (getRelativePath() != null) sb.append("RelativePath: ").append(getRelativePath()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SubModule == false) return false; SubModule other = (SubModule) obj; if (other.getCommitId() == null ^ this.getCommitId() == null) return false; if (other.getCommitId() != null && other.getCommitId().equals(this.getCommitId()) == false) return false; if (other.getAbsolutePath() == null ^ this.getAbsolutePath() == null) return false; if (other.getAbsolutePath() != null && other.getAbsolutePath().equals(this.getAbsolutePath()) == false) return false; if (other.getRelativePath() == null ^ this.getRelativePath() == null) return false; if (other.getRelativePath() != null && other.getRelativePath().equals(this.getRelativePath()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCommitId() == null) ? 0 : getCommitId().hashCode()); hashCode = prime * hashCode + ((getAbsolutePath() == null) ? 0 : getAbsolutePath().hashCode()); hashCode = prime * hashCode + ((getRelativePath() == null) ? 0 : getRelativePath().hashCode()); return hashCode; } @Override public SubModule clone() { try { return (SubModule) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.codecommit.model.transform.SubModuleMarshaller.getInstance().marshall(this, protocolMarshaller); } }