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

software.amazon.awssdk.services.codecommit.model.Folder Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS CodeCommit module holds the client classes that are used for communicating with AWS CodeCommit

The newest version!
/*
 * Copyright 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.codecommit.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* Returns information about a folder in a repository. *

*/ @Generated("software.amazon.awssdk:codegen") public final class Folder implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField TREE_ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("treeId") .getter(getter(Folder::treeId)).setter(setter(Builder::treeId)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("treeId").build()).build(); private static final SdkField ABSOLUTE_PATH_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("absolutePath").getter(getter(Folder::absolutePath)).setter(setter(Builder::absolutePath)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("absolutePath").build()).build(); private static final SdkField RELATIVE_PATH_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("relativePath").getter(getter(Folder::relativePath)).setter(setter(Builder::relativePath)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("relativePath").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(TREE_ID_FIELD, ABSOLUTE_PATH_FIELD, RELATIVE_PATH_FIELD)); private static final long serialVersionUID = 1L; private final String treeId; private final String absolutePath; private final String relativePath; private Folder(BuilderImpl builder) { this.treeId = builder.treeId; this.absolutePath = builder.absolutePath; this.relativePath = builder.relativePath; } /** *

* The full SHA-1 pointer of the tree information for the commit that contains the folder. *

* * @return The full SHA-1 pointer of the tree information for the commit that contains the folder. */ public final String treeId() { return treeId; } /** *

* The fully qualified path of the folder in the repository. *

* * @return The fully qualified path of the folder in the repository. */ public final String absolutePath() { return absolutePath; } /** *

* The relative path of the specified folder from the folder where the query originated. *

* * @return The relative path of the specified folder from the folder where the query originated. */ public final String relativePath() { return relativePath; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(treeId()); hashCode = 31 * hashCode + Objects.hashCode(absolutePath()); hashCode = 31 * hashCode + Objects.hashCode(relativePath()); return hashCode; } @Override public final boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof Folder)) { return false; } Folder other = (Folder) obj; return Objects.equals(treeId(), other.treeId()) && Objects.equals(absolutePath(), other.absolutePath()) && Objects.equals(relativePath(), other.relativePath()); } /** * 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. */ @Override public final String toString() { return ToString.builder("Folder").add("TreeId", treeId()).add("AbsolutePath", absolutePath()) .add("RelativePath", relativePath()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "treeId": return Optional.ofNullable(clazz.cast(treeId())); case "absolutePath": return Optional.ofNullable(clazz.cast(absolutePath())); case "relativePath": return Optional.ofNullable(clazz.cast(relativePath())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((Folder) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The full SHA-1 pointer of the tree information for the commit that contains the folder. *

* * @param treeId * The full SHA-1 pointer of the tree information for the commit that contains the folder. * @return Returns a reference to this object so that method calls can be chained together. */ Builder treeId(String treeId); /** *

* The fully qualified path of the folder in the repository. *

* * @param absolutePath * The fully qualified path of the folder in the repository. * @return Returns a reference to this object so that method calls can be chained together. */ Builder absolutePath(String absolutePath); /** *

* The relative path of the specified folder from the folder where the query originated. *

* * @param relativePath * The relative path of the specified folder from the folder where the query originated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder relativePath(String relativePath); } static final class BuilderImpl implements Builder { private String treeId; private String absolutePath; private String relativePath; private BuilderImpl() { } private BuilderImpl(Folder model) { treeId(model.treeId); absolutePath(model.absolutePath); relativePath(model.relativePath); } public final String getTreeId() { return treeId; } public final void setTreeId(String treeId) { this.treeId = treeId; } @Override public final Builder treeId(String treeId) { this.treeId = treeId; return this; } public final String getAbsolutePath() { return absolutePath; } public final void setAbsolutePath(String absolutePath) { this.absolutePath = absolutePath; } @Override public final Builder absolutePath(String absolutePath) { this.absolutePath = absolutePath; return this; } public final String getRelativePath() { return relativePath; } public final void setRelativePath(String relativePath) { this.relativePath = relativePath; } @Override public final Builder relativePath(String relativePath) { this.relativePath = relativePath; return this; } @Override public Folder build() { return new Folder(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy