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

org.cloudfoundry.client.v3.organizations.GetOrganizationDefaultDomainRequest Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import org.immutables.value.Generated;

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

* Use the builder to create immutable instances: * {@code GetOrganizationDefaultDomainRequest.builder()}. */ @Generated(from = "_GetOrganizationDefaultDomainRequest", generator = "Immutables") @SuppressWarnings({"all"}) @javax.annotation.Generated("org.immutables.processor.ProxyProcessor") public final class GetOrganizationDefaultDomainRequest extends org.cloudfoundry.client.v3.organizations._GetOrganizationDefaultDomainRequest { private final String organizationId; private GetOrganizationDefaultDomainRequest(GetOrganizationDefaultDomainRequest.Builder builder) { this.organizationId = builder.organizationId; } /** * The organization id */ @Override public String getOrganizationId() { return organizationId; } /** * This instance is equal to all instances of {@code GetOrganizationDefaultDomainRequest} 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 GetOrganizationDefaultDomainRequest && equalTo(0, (GetOrganizationDefaultDomainRequest) another); } private boolean equalTo(int synthetic, GetOrganizationDefaultDomainRequest another) { return organizationId.equals(another.organizationId); } /** * Computes a hash code from attributes: {@code organizationId}. * @return hashCode value */ @Override public int hashCode() { int h = 5381; h += (h << 5) + organizationId.hashCode(); return h; } /** * Prints the immutable value {@code GetOrganizationDefaultDomainRequest} with attribute values. * @return A string representation of the value */ @Override public String toString() { return "GetOrganizationDefaultDomainRequest{" + "organizationId=" + organizationId + "}"; } /** * Creates a builder for {@link GetOrganizationDefaultDomainRequest GetOrganizationDefaultDomainRequest}. *

   * GetOrganizationDefaultDomainRequest.builder()
   *    .organizationId(String) // required {@link GetOrganizationDefaultDomainRequest#getOrganizationId() organizationId}
   *    .build();
   * 
* @return A new GetOrganizationDefaultDomainRequest builder */ public static GetOrganizationDefaultDomainRequest.Builder builder() { return new GetOrganizationDefaultDomainRequest.Builder(); } /** * Builds instances of type {@link GetOrganizationDefaultDomainRequest GetOrganizationDefaultDomainRequest}. * 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 = "_GetOrganizationDefaultDomainRequest", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_ORGANIZATION_ID = 0x1L; private long initBits = 0x1L; private String organizationId; private Builder() { } /** * Fill a builder with attribute values from the provided {@code GetOrganizationDefaultDomainRequest} 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(GetOrganizationDefaultDomainRequest instance) { return from((_GetOrganizationDefaultDomainRequest) instance); } /** * Copy abstract value type {@code _GetOrganizationDefaultDomainRequest} 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(_GetOrganizationDefaultDomainRequest instance) { Objects.requireNonNull(instance, "instance"); organizationId(instance.getOrganizationId()); return this; } /** * Initializes the value for the {@link GetOrganizationDefaultDomainRequest#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 GetOrganizationDefaultDomainRequest GetOrganizationDefaultDomainRequest}. * @return An immutable instance of GetOrganizationDefaultDomainRequest * @throws java.lang.IllegalStateException if any required attributes are missing */ public GetOrganizationDefaultDomainRequest build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new GetOrganizationDefaultDomainRequest(this); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_ORGANIZATION_ID) != 0) attributes.add("organizationId"); return "Cannot build GetOrganizationDefaultDomainRequest, some of required attributes are not set " + attributes; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy