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

org.cloudfoundry.client.v2.organizations.GetOrganizationUserRolesRequest Maven / Gradle / Ivy

package org.cloudfoundry.client.v2.organizations;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.client.v2.OrderDirection;
import org.cloudfoundry.client.v2.PaginatedRequest;
import org.immutables.value.Generated;

/**
 * The request payload for the Retrieving the roles of all Users in the Organization operation
 */
@Generated(from = "_GetOrganizationUserRolesRequest", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class GetOrganizationUserRolesRequest
    extends org.cloudfoundry.client.v2.organizations._GetOrganizationUserRolesRequest {
  private final @Nullable OrderDirection orderDirection;
  private final @Nullable Integer page;
  private final @Nullable Integer resultsPerPage;
  private final String organizationId;

  private GetOrganizationUserRolesRequest(GetOrganizationUserRolesRequest.Builder builder) {
    this.orderDirection = builder.orderDirection;
    this.page = builder.page;
    this.resultsPerPage = builder.resultsPerPage;
    this.organizationId = builder.organizationId;
  }

  /**
   * The order direction
   */
  @Override
  public @Nullable OrderDirection getOrderDirection() {
    return orderDirection;
  }

  /**
   * The page
   */
  @Override
  public @Nullable Integer getPage() {
    return page;
  }

  /**
   * The results per page
   */
  @Override
  public @Nullable Integer getResultsPerPage() {
    return resultsPerPage;
  }

  /**
   * The organization id
   */
  @Override
  public String getOrganizationId() {
    return organizationId;
  }

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

  private boolean equalTo(int synthetic, GetOrganizationUserRolesRequest another) {
    return Objects.equals(orderDirection, another.orderDirection)
        && Objects.equals(page, another.page)
        && Objects.equals(resultsPerPage, another.resultsPerPage)
        && organizationId.equals(another.organizationId);
  }

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

  /**
   * Prints the immutable value {@code GetOrganizationUserRolesRequest} with attribute values.
   * @return A string representation of the value
   */
  @Override
  public String toString() {
    return "GetOrganizationUserRolesRequest{"
        + "orderDirection=" + orderDirection
        + ", page=" + page
        + ", resultsPerPage=" + resultsPerPage
        + ", organizationId=" + organizationId
        + "}";
  }

  /**
   * Creates a builder for {@link GetOrganizationUserRolesRequest GetOrganizationUserRolesRequest}.
   * 
   * GetOrganizationUserRolesRequest.builder()
   *    .orderDirection(org.cloudfoundry.client.v2.OrderDirection | null) // nullable {@link GetOrganizationUserRolesRequest#getOrderDirection() orderDirection}
   *    .page(Integer | null) // nullable {@link GetOrganizationUserRolesRequest#getPage() page}
   *    .resultsPerPage(Integer | null) // nullable {@link GetOrganizationUserRolesRequest#getResultsPerPage() resultsPerPage}
   *    .organizationId(String) // required {@link GetOrganizationUserRolesRequest#getOrganizationId() organizationId}
   *    .build();
   * 
* @return A new GetOrganizationUserRolesRequest builder */ public static GetOrganizationUserRolesRequest.Builder builder() { return new GetOrganizationUserRolesRequest.Builder(); } /** * Builds instances of type {@link GetOrganizationUserRolesRequest GetOrganizationUserRolesRequest}. * 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 = "_GetOrganizationUserRolesRequest", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_ORGANIZATION_ID = 0x1L; private long initBits = 0x1L; private OrderDirection orderDirection; private Integer page; private Integer resultsPerPage; private String organizationId; private Builder() { } /** * Fill a builder with attribute values from the provided {@code org.cloudfoundry.client.v2.PaginatedRequest} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(PaginatedRequest instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Fill a builder with attribute values from the provided {@code GetOrganizationUserRolesRequest} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(GetOrganizationUserRolesRequest instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Copy abstract value type {@code _GetOrganizationUserRolesRequest} instance into builder. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(_GetOrganizationUserRolesRequest instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } private void from(short _unused, Object object) { if (object instanceof PaginatedRequest) { PaginatedRequest instance = (PaginatedRequest) object; OrderDirection orderDirectionValue = instance.getOrderDirection(); if (orderDirectionValue != null) { orderDirection(orderDirectionValue); } Integer resultsPerPageValue = instance.getResultsPerPage(); if (resultsPerPageValue != null) { resultsPerPage(resultsPerPageValue); } Integer pageValue = instance.getPage(); if (pageValue != null) { page(pageValue); } } if (object instanceof org.cloudfoundry.client.v2.organizations._GetOrganizationUserRolesRequest) { org.cloudfoundry.client.v2.organizations._GetOrganizationUserRolesRequest instance = (org.cloudfoundry.client.v2.organizations._GetOrganizationUserRolesRequest) object; organizationId(instance.getOrganizationId()); } } /** * Initializes the value for the {@link GetOrganizationUserRolesRequest#getOrderDirection() orderDirection} attribute. * @param orderDirection The value for orderDirection (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder orderDirection(@Nullable OrderDirection orderDirection) { this.orderDirection = orderDirection; return this; } /** * Initializes the value for the {@link GetOrganizationUserRolesRequest#getPage() page} attribute. * @param page The value for page (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder page(@Nullable Integer page) { this.page = page; return this; } /** * Initializes the value for the {@link GetOrganizationUserRolesRequest#getResultsPerPage() resultsPerPage} attribute. * @param resultsPerPage The value for resultsPerPage (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder resultsPerPage(@Nullable Integer resultsPerPage) { this.resultsPerPage = resultsPerPage; return this; } /** * Initializes the value for the {@link GetOrganizationUserRolesRequest#getOrganizationId() organizationId} attribute. * @param organizationId The value for organizationId * @return {@code this} builder for use in a chained invocation */ public final Builder organizationId(String organizationId) { this.organizationId = Objects.requireNonNull(organizationId, "organizationId"); initBits &= ~INIT_BIT_ORGANIZATION_ID; return this; } /** * Builds a new {@link GetOrganizationUserRolesRequest GetOrganizationUserRolesRequest}. * @return An immutable instance of GetOrganizationUserRolesRequest * @throws java.lang.IllegalStateException if any required attributes are missing */ public GetOrganizationUserRolesRequest build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new GetOrganizationUserRolesRequest(this); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_ORGANIZATION_ID) != 0) attributes.add("organizationId"); return "Cannot build GetOrganizationUserRolesRequest, some of required attributes are not set " + attributes; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy