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

org.cloudfoundry.client.v2.users.CreateUserRequest Maven / Gradle / Ivy

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

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

/**
 * The request payload for the Create a User operation
 */
@Generated(from = "_CreateUserRequest", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class CreateUserRequest extends org.cloudfoundry.client.v2.users._CreateUserRequest {
  private final @Nullable String defaultSpaceId;
  private final String uaaId;

  private CreateUserRequest(CreateUserRequest.Builder builder) {
    this.defaultSpaceId = builder.defaultSpaceId;
    this.uaaId = builder.uaaId;
  }

  /**
   * The ID of the default space for apps created by this user
   */
  @JsonProperty("default_space_guid")
  @Override
  public @Nullable String getDefaultSpaceId() {
    return defaultSpaceId;
  }

  /**
   * The UAA ID of the user to create
   */
  @JsonProperty("guid")
  @Override
  public String getUaaId() {
    return uaaId;
  }

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

  private boolean equalTo(int synthetic, CreateUserRequest another) {
    return Objects.equals(defaultSpaceId, another.defaultSpaceId)
        && uaaId.equals(another.uaaId);
  }

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

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

  /**
   * 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 = "_CreateUserRequest", generator = "Immutables")
  @Deprecated
  @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
  static final class Json extends org.cloudfoundry.client.v2.users._CreateUserRequest {
    String defaultSpaceId;
    String uaaId;
    @JsonProperty("default_space_guid")
    public void setDefaultSpaceId(@Nullable String defaultSpaceId) {
      this.defaultSpaceId = defaultSpaceId;
    }
    @JsonProperty("guid")
    public void setUaaId(String uaaId) {
      this.uaaId = uaaId;
    }
    @Override
    public String getDefaultSpaceId() { throw new UnsupportedOperationException(); }
    @Override
    public String getUaaId() { 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 CreateUserRequest fromJson(Json json) {
    CreateUserRequest.Builder builder = CreateUserRequest.builder();
    if (json.defaultSpaceId != null) {
      builder.defaultSpaceId(json.defaultSpaceId);
    }
    if (json.uaaId != null) {
      builder.uaaId(json.uaaId);
    }
    return builder.build();
  }

  /**
   * Creates a builder for {@link CreateUserRequest CreateUserRequest}.
   * 
   * CreateUserRequest.builder()
   *    .defaultSpaceId(String | null) // nullable {@link CreateUserRequest#getDefaultSpaceId() defaultSpaceId}
   *    .uaaId(String) // required {@link CreateUserRequest#getUaaId() uaaId}
   *    .build();
   * 
* @return A new CreateUserRequest builder */ public static CreateUserRequest.Builder builder() { return new CreateUserRequest.Builder(); } /** * Builds instances of type {@link CreateUserRequest CreateUserRequest}. * 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 = "_CreateUserRequest", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_UAA_ID = 0x1L; private long initBits = 0x1L; private String defaultSpaceId; private String uaaId; private Builder() { } /** * Fill a builder with attribute values from the provided {@code CreateUserRequest} 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(CreateUserRequest instance) { return from((_CreateUserRequest) instance); } /** * Copy abstract value type {@code _CreateUserRequest} 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(_CreateUserRequest instance) { Objects.requireNonNull(instance, "instance"); String defaultSpaceIdValue = instance.getDefaultSpaceId(); if (defaultSpaceIdValue != null) { defaultSpaceId(defaultSpaceIdValue); } uaaId(instance.getUaaId()); return this; } /** * Initializes the value for the {@link CreateUserRequest#getDefaultSpaceId() defaultSpaceId} attribute. * @param defaultSpaceId The value for defaultSpaceId (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder defaultSpaceId(@Nullable String defaultSpaceId) { this.defaultSpaceId = defaultSpaceId; return this; } /** * Initializes the value for the {@link CreateUserRequest#getUaaId() uaaId} attribute. * @param uaaId The value for uaaId * @return {@code this} builder for use in a chained invocation */ public final Builder uaaId(String uaaId) { this.uaaId = Objects.requireNonNull(uaaId, "uaaId"); initBits &= ~INIT_BIT_UAA_ID; return this; } /** * Builds a new {@link CreateUserRequest CreateUserRequest}. * @return An immutable instance of CreateUserRequest * @throws java.lang.IllegalStateException if any required attributes are missing */ public CreateUserRequest build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new CreateUserRequest(this); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_UAA_ID) != 0) attributes.add("uaaId"); return "Cannot build CreateUserRequest, some of required attributes are not set " + attributes; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy