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

org.cloudfoundry.client.v2.serviceinstances.BindServiceInstanceRouteRequest Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.immutables.value.Generated;

/**
 * The request payload to Bind Service Instance To a Route
 */
@Generated(from = "_BindServiceInstanceRouteRequest", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class BindServiceInstanceRouteRequest
    extends org.cloudfoundry.client.v2.serviceinstances._BindServiceInstanceRouteRequest {
  private final @Nullable Map parameters;
  private final String routeId;
  private final String serviceInstanceId;

  private BindServiceInstanceRouteRequest(BindServiceInstanceRouteRequest.Builder builder) {
    this.parameters = builder.parameters == null ? null : createUnmodifiableMap(false, false, builder.parameters);
    this.routeId = builder.routeId;
    this.serviceInstanceId = builder.serviceInstanceId;
  }

  /**
   * Key/value pairs of all arbitrary parameters to pass along to the service broker
   */
  @JsonProperty("parameters")
  @Override
  public @Nullable Map getParameters() {
    return parameters;
  }

  /**
   * The route id
   */
  @JsonProperty("routeId")
  @JsonIgnore
  @Override
  public String getRouteId() {
    return routeId;
  }

  /**
   * The service instance id
   */
  @JsonProperty("serviceInstanceId")
  @JsonIgnore
  @Override
  public String getServiceInstanceId() {
    return serviceInstanceId;
  }

  /**
   * This instance is equal to all instances of {@code BindServiceInstanceRouteRequest} 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 BindServiceInstanceRouteRequest
        && equalTo(0, (BindServiceInstanceRouteRequest) another);
  }

  private boolean equalTo(int synthetic, BindServiceInstanceRouteRequest another) {
    return Objects.equals(parameters, another.parameters)
        && routeId.equals(another.routeId)
        && serviceInstanceId.equals(another.serviceInstanceId);
  }

  /**
   * Computes a hash code from attributes: {@code parameters}, {@code routeId}, {@code serviceInstanceId}.
   * @return hashCode value
   */
  @Override
  public int hashCode() {
    int h = 5381;
    h += (h << 5) + Objects.hashCode(parameters);
    h += (h << 5) + routeId.hashCode();
    h += (h << 5) + serviceInstanceId.hashCode();
    return h;
  }

  /**
   * Prints the immutable value {@code BindServiceInstanceRouteRequest} with attribute values.
   * @return A string representation of the value
   */
  @Override
  public String toString() {
    return "BindServiceInstanceRouteRequest{"
        + "parameters=" + parameters
        + ", routeId=" + routeId
        + ", serviceInstanceId=" + serviceInstanceId
        + "}";
  }

  /**
   * 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 = "_BindServiceInstanceRouteRequest", generator = "Immutables")
  @Deprecated
  @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
  static final class Json extends org.cloudfoundry.client.v2.serviceinstances._BindServiceInstanceRouteRequest {
    Map parameters = null;
    String routeId;
    String serviceInstanceId;
    @JsonProperty("parameters")
    public void setParameters(@Nullable Map parameters) {
      this.parameters = parameters;
    }
    @JsonProperty("routeId")
    @JsonIgnore
    public void setRouteId(String routeId) {
      this.routeId = routeId;
    }
    @JsonProperty("serviceInstanceId")
    @JsonIgnore
    public void setServiceInstanceId(String serviceInstanceId) {
      this.serviceInstanceId = serviceInstanceId;
    }
    @Override
    public Map getParameters() { throw new UnsupportedOperationException(); }
    @Override
    public String getRouteId() { throw new UnsupportedOperationException(); }
    @Override
    public String getServiceInstanceId() { 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 BindServiceInstanceRouteRequest fromJson(Json json) {
    BindServiceInstanceRouteRequest.Builder builder = BindServiceInstanceRouteRequest.builder();
    if (json.parameters != null) {
      builder.putAllParameters(json.parameters);
    }
    if (json.routeId != null) {
      builder.routeId(json.routeId);
    }
    if (json.serviceInstanceId != null) {
      builder.serviceInstanceId(json.serviceInstanceId);
    }
    return builder.build();
  }

  /**
   * Creates a builder for {@link BindServiceInstanceRouteRequest BindServiceInstanceRouteRequest}.
   * 
   * BindServiceInstanceRouteRequest.builder()
   *    .parameters(Map&lt;String, Object&gt; | null) // nullable {@link BindServiceInstanceRouteRequest#getParameters() parameters}
   *    .routeId(String) // required {@link BindServiceInstanceRouteRequest#getRouteId() routeId}
   *    .serviceInstanceId(String) // required {@link BindServiceInstanceRouteRequest#getServiceInstanceId() serviceInstanceId}
   *    .build();
   * 
* @return A new BindServiceInstanceRouteRequest builder */ public static BindServiceInstanceRouteRequest.Builder builder() { return new BindServiceInstanceRouteRequest.Builder(); } /** * Builds instances of type {@link BindServiceInstanceRouteRequest BindServiceInstanceRouteRequest}. * 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 = "_BindServiceInstanceRouteRequest", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_ROUTE_ID = 0x1L; private static final long INIT_BIT_SERVICE_INSTANCE_ID = 0x2L; private long initBits = 0x3L; private Map parameters = null; private String routeId; private String serviceInstanceId; private Builder() { } /** * Fill a builder with attribute values from the provided {@code BindServiceInstanceRouteRequest} instance. * Regular attribute values will be replaced with those from the given instance. * Absent optional values will not replace present values. * Collection elements and entries will be added, not replaced. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(BindServiceInstanceRouteRequest instance) { return from((_BindServiceInstanceRouteRequest) instance); } /** * Copy abstract value type {@code _BindServiceInstanceRouteRequest} 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(_BindServiceInstanceRouteRequest instance) { Objects.requireNonNull(instance, "instance"); Map parametersValue = instance.getParameters(); if (parametersValue != null) { putAllParameters(parametersValue); } routeId(instance.getRouteId()); serviceInstanceId(instance.getServiceInstanceId()); return this; } /** * Put one entry to the {@link BindServiceInstanceRouteRequest#getParameters() parameters} map. * @param key The key in the parameters map * @param value The associated value in the parameters map * @return {@code this} builder for use in a chained invocation */ public final Builder parameter(String key, Object value) { if (this.parameters == null) { this.parameters = new LinkedHashMap(); } this.parameters.put(key, value); return this; } /** * Put one entry to the {@link BindServiceInstanceRouteRequest#getParameters() parameters} map. Nulls are not permitted * @param entry The key and value entry * @return {@code this} builder for use in a chained invocation */ public final Builder parameter(Map.Entry entry) { if (this.parameters == null) { this.parameters = new LinkedHashMap(); } String k = entry.getKey(); Object v = entry.getValue(); this.parameters.put(k, v); return this; } /** * Sets or replaces all mappings from the specified map as entries for the {@link BindServiceInstanceRouteRequest#getParameters() parameters} map. Nulls are not permitted as keys or values, but parameter itself can be null * @param entries The entries that will be added to the parameters map * @return {@code this} builder for use in a chained invocation */ public final Builder parameters(@Nullable Map entries) { if (entries == null) { this.parameters = null; return this; } this.parameters = new LinkedHashMap(); return putAllParameters(entries); } /** * Put all mappings from the specified map as entries to {@link BindServiceInstanceRouteRequest#getParameters() parameters} map. Nulls are not permitted * @param entries The entries that will be added to the parameters map * @return {@code this} builder for use in a chained invocation */ public final Builder putAllParameters(Map entries) { if (this.parameters == null) { this.parameters = new LinkedHashMap(); } for (Map.Entry e : entries.entrySet()) { String k = e.getKey(); Object v = e.getValue(); this.parameters.put(k, v); } return this; } /** * Initializes the value for the {@link BindServiceInstanceRouteRequest#getRouteId() routeId} attribute. * @param routeId The value for routeId * @return {@code this} builder for use in a chained invocation */ public final Builder routeId(String routeId) { this.routeId = Objects.requireNonNull(routeId, "routeId"); initBits &= ~INIT_BIT_ROUTE_ID; return this; } /** * Initializes the value for the {@link BindServiceInstanceRouteRequest#getServiceInstanceId() serviceInstanceId} attribute. * @param serviceInstanceId The value for serviceInstanceId * @return {@code this} builder for use in a chained invocation */ public final Builder serviceInstanceId(String serviceInstanceId) { this.serviceInstanceId = Objects.requireNonNull(serviceInstanceId, "serviceInstanceId"); initBits &= ~INIT_BIT_SERVICE_INSTANCE_ID; return this; } /** * Builds a new {@link BindServiceInstanceRouteRequest BindServiceInstanceRouteRequest}. * @return An immutable instance of BindServiceInstanceRouteRequest * @throws java.lang.IllegalStateException if any required attributes are missing */ public BindServiceInstanceRouteRequest build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new BindServiceInstanceRouteRequest(this); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_ROUTE_ID) != 0) attributes.add("routeId"); if ((initBits & INIT_BIT_SERVICE_INSTANCE_ID) != 0) attributes.add("serviceInstanceId"); return "Cannot build BindServiceInstanceRouteRequest, some of required attributes are not set " + attributes; } } private static Map createUnmodifiableMap(boolean checkNulls, boolean skipNulls, Map map) { switch (map.size()) { case 0: return Collections.emptyMap(); case 1: { Map.Entry e = map.entrySet().iterator().next(); K k = e.getKey(); V v = e.getValue(); if (checkNulls) { Objects.requireNonNull(k, "key"); Objects.requireNonNull(v, v == null ? "value for key: " + k : null); } if (skipNulls && (k == null || v == null)) { return Collections.emptyMap(); } return Collections.singletonMap(k, v); } default: { Map linkedMap = new LinkedHashMap<>(map.size() * 4 / 3 + 1); if (skipNulls || checkNulls) { for (Map.Entry e : map.entrySet()) { K k = e.getKey(); V v = e.getValue(); if (skipNulls) { if (k == null || v == null) continue; } else if (checkNulls) { Objects.requireNonNull(k, "key"); Objects.requireNonNull(v, v == null ? "value for key: " + k : null); } linkedMap.put(k, v); } } else { linkedMap.putAll(map); } return Collections.unmodifiableMap(linkedMap); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy