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

org.cloudfoundry.client.v3.droplets.Buildpack Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
package org.cloudfoundry.client.v3.droplets;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.immutables.value.Generated;

/**
 * Immutable implementation of {@link _Buildpack}.
 * 

* Use the builder to create immutable instances: * {@code Buildpack.builder()}. */ @Generated(from = "_Buildpack", generator = "Immutables") @SuppressWarnings({"all"}) @javax.annotation.Generated("org.immutables.processor.ProxyProcessor") public final class Buildpack extends org.cloudfoundry.client.v3.droplets._Buildpack { private final @Nullable String buildpackName; private final @Nullable String detectOutput; private final String name; private final @Nullable String version; private Buildpack(Buildpack.Builder builder) { this.buildpackName = builder.buildpackName; this.detectOutput = builder.detectOutput; this.name = builder.name; this.version = builder.version; } /** * The name reported by buildpack */ @JsonProperty("buildpack_name") @Override public @Nullable String getBuildpackName() { return buildpackName; } /** * The output during buildpack detect process */ @JsonProperty("detect_output") @Override public @Nullable String getDetectOutput() { return detectOutput; } /** * The system buildpack name */ @JsonProperty("name") @Override public String getName() { return name; } /** * The version of the buildpack */ @JsonProperty("version") @Override public @Nullable String getVersion() { return version; } /** * This instance is equal to all instances of {@code Buildpack} that have equal attribute values. * @return {@code true} if {@code this} is equal to {@code another} instance */ @Override public boolean equals(Object another) { if (this == another) return true; return another instanceof Buildpack && equalTo(0, (Buildpack) another); } private boolean equalTo(int synthetic, Buildpack another) { return Objects.equals(buildpackName, another.buildpackName) && Objects.equals(detectOutput, another.detectOutput) && name.equals(another.name) && Objects.equals(version, another.version); } /** * Computes a hash code from attributes: {@code buildpackName}, {@code detectOutput}, {@code name}, {@code version}. * @return hashCode value */ @Override public int hashCode() { int h = 5381; h += (h << 5) + Objects.hashCode(buildpackName); h += (h << 5) + Objects.hashCode(detectOutput); h += (h << 5) + name.hashCode(); h += (h << 5) + Objects.hashCode(version); return h; } /** * Prints the immutable value {@code Buildpack} with attribute values. * @return A string representation of the value */ @Override public String toString() { return "Buildpack{" + "buildpackName=" + buildpackName + ", detectOutput=" + detectOutput + ", name=" + name + ", version=" + version + "}"; } /** * Utility type used to correctly read immutable object from JSON representation. * @deprecated Do not use this type directly, it exists only for the Jackson-binding infrastructure */ @Generated(from = "_Buildpack", generator = "Immutables") @Deprecated @JsonDeserialize @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json extends org.cloudfoundry.client.v3.droplets._Buildpack { String buildpackName; String detectOutput; String name; String version; @JsonProperty("buildpack_name") public void setBuildpackName(@Nullable String buildpackName) { this.buildpackName = buildpackName; } @JsonProperty("detect_output") public void setDetectOutput(@Nullable String detectOutput) { this.detectOutput = detectOutput; } @JsonProperty("name") public void setName(String name) { this.name = name; } @JsonProperty("version") public void setVersion(@Nullable String version) { this.version = version; } @Override public String getBuildpackName() { throw new UnsupportedOperationException(); } @Override public String getDetectOutput() { throw new UnsupportedOperationException(); } @Override public String getName() { throw new UnsupportedOperationException(); } @Override public String getVersion() { throw new UnsupportedOperationException(); } } /** * @param json A JSON-bindable data structure * @return An immutable value type * @deprecated Do not use this method directly, it exists only for the Jackson-binding infrastructure */ @Deprecated @JsonCreator(mode = JsonCreator.Mode.DELEGATING) static Buildpack fromJson(Json json) { Buildpack.Builder builder = Buildpack.builder(); if (json.buildpackName != null) { builder.buildpackName(json.buildpackName); } if (json.detectOutput != null) { builder.detectOutput(json.detectOutput); } if (json.name != null) { builder.name(json.name); } if (json.version != null) { builder.version(json.version); } return builder.build(); } /** * Creates a builder for {@link Buildpack Buildpack}. *

   * Buildpack.builder()
   *    .buildpackName(String | null) // nullable {@link Buildpack#getBuildpackName() buildpackName}
   *    .detectOutput(String | null) // nullable {@link Buildpack#getDetectOutput() detectOutput}
   *    .name(String) // required {@link Buildpack#getName() name}
   *    .version(String | null) // nullable {@link Buildpack#getVersion() version}
   *    .build();
   * 
* @return A new Buildpack builder */ public static Buildpack.Builder builder() { return new Buildpack.Builder(); } /** * Builds instances of type {@link Buildpack Buildpack}. * Initialize attributes and then invoke the {@link #build()} method to create an * immutable instance. *

{@code Builder} is not thread-safe and generally should not be stored in a field or collection, * but instead used immediately to create instances. */ @Generated(from = "_Buildpack", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_NAME = 0x1L; private long initBits = 0x1L; private String buildpackName; private String detectOutput; private String name; private String version; private Builder() { } /** * Fill a builder with attribute values from the provided {@code Buildpack} instance. * Regular attribute values will be replaced with those from the given instance. * Absent optional values will not replace present values. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(Buildpack instance) { return from((_Buildpack) instance); } /** * Copy abstract value type {@code _Buildpack} instance into builder. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ final Builder from(_Buildpack instance) { Objects.requireNonNull(instance, "instance"); String buildpackNameValue = instance.getBuildpackName(); if (buildpackNameValue != null) { buildpackName(buildpackNameValue); } String detectOutputValue = instance.getDetectOutput(); if (detectOutputValue != null) { detectOutput(detectOutputValue); } name(instance.getName()); String versionValue = instance.getVersion(); if (versionValue != null) { version(versionValue); } return this; } /** * Initializes the value for the {@link Buildpack#getBuildpackName() buildpackName} attribute. * @param buildpackName The value for buildpackName (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @JsonProperty("buildpack_name") public final Builder buildpackName(@Nullable String buildpackName) { this.buildpackName = buildpackName; return this; } /** * Initializes the value for the {@link Buildpack#getDetectOutput() detectOutput} attribute. * @param detectOutput The value for detectOutput (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @JsonProperty("detect_output") public final Builder detectOutput(@Nullable String detectOutput) { this.detectOutput = detectOutput; return this; } /** * Initializes the value for the {@link Buildpack#getName() name} attribute. * @param name The value for name * @return {@code this} builder for use in a chained invocation */ @JsonProperty("name") public final Builder name(String name) { this.name = Objects.requireNonNull(name, "name"); initBits &= ~INIT_BIT_NAME; return this; } /** * Initializes the value for the {@link Buildpack#getVersion() version} attribute. * @param version The value for version (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @JsonProperty("version") public final Builder version(@Nullable String version) { this.version = version; return this; } /** * Builds a new {@link Buildpack Buildpack}. * @return An immutable instance of Buildpack * @throws java.lang.IllegalStateException if any required attributes are missing */ public Buildpack build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new Buildpack(this); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_NAME) != 0) attributes.add("name"); return "Cannot build Buildpack, some of required attributes are not set " + attributes; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy