org.cloudfoundry.client.v2.spaces.DeleteSpaceRequest Maven / Gradle / Ivy
package org.cloudfoundry.client.v2.spaces;
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 Delete a Particular Space operation
*/
@Generated(from = "_DeleteSpaceRequest", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class DeleteSpaceRequest extends org.cloudfoundry.client.v2.spaces._DeleteSpaceRequest {
private final @Nullable Boolean async;
private final @Nullable Boolean recursive;
private final String spaceId;
private DeleteSpaceRequest(DeleteSpaceRequest.Builder builder) {
this.async = builder.async;
this.recursive = builder.recursive;
this.spaceId = builder.spaceId;
}
/**
* The async
*/
@Override
public @Nullable Boolean getAsync() {
return async;
}
/**
* The recursive flag
*/
@Override
public @Nullable Boolean getRecursive() {
return recursive;
}
/**
* The space id
*/
@Override
public String getSpaceId() {
return spaceId;
}
/**
* This instance is equal to all instances of {@code DeleteSpaceRequest} 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 DeleteSpaceRequest
&& equalTo(0, (DeleteSpaceRequest) another);
}
private boolean equalTo(int synthetic, DeleteSpaceRequest another) {
return Objects.equals(async, another.async)
&& Objects.equals(recursive, another.recursive)
&& spaceId.equals(another.spaceId);
}
/**
* Computes a hash code from attributes: {@code async}, {@code recursive}, {@code spaceId}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + Objects.hashCode(async);
h += (h << 5) + Objects.hashCode(recursive);
h += (h << 5) + spaceId.hashCode();
return h;
}
/**
* Prints the immutable value {@code DeleteSpaceRequest} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "DeleteSpaceRequest{"
+ "async=" + async
+ ", recursive=" + recursive
+ ", spaceId=" + spaceId
+ "}";
}
/**
* Creates a builder for {@link DeleteSpaceRequest DeleteSpaceRequest}.
*
* DeleteSpaceRequest.builder()
* .async(Boolean | null) // nullable {@link DeleteSpaceRequest#getAsync() async}
* .recursive(Boolean | null) // nullable {@link DeleteSpaceRequest#getRecursive() recursive}
* .spaceId(String) // required {@link DeleteSpaceRequest#getSpaceId() spaceId}
* .build();
*
* @return A new DeleteSpaceRequest builder
*/
public static DeleteSpaceRequest.Builder builder() {
return new DeleteSpaceRequest.Builder();
}
/**
* Builds instances of type {@link DeleteSpaceRequest DeleteSpaceRequest}.
* 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 = "_DeleteSpaceRequest", generator = "Immutables")
public static final class Builder {
private static final long INIT_BIT_SPACE_ID = 0x1L;
private long initBits = 0x1L;
private Boolean async;
private Boolean recursive;
private String spaceId;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code DeleteSpaceRequest} 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(DeleteSpaceRequest instance) {
return from((_DeleteSpaceRequest) instance);
}
/**
* Copy abstract value type {@code _DeleteSpaceRequest} 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(_DeleteSpaceRequest instance) {
Objects.requireNonNull(instance, "instance");
Boolean asyncValue = instance.getAsync();
if (asyncValue != null) {
async(asyncValue);
}
Boolean recursiveValue = instance.getRecursive();
if (recursiveValue != null) {
recursive(recursiveValue);
}
spaceId(instance.getSpaceId());
return this;
}
/**
* Initializes the value for the {@link DeleteSpaceRequest#getAsync() async} attribute.
* @param async The value for async (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
public final Builder async(@Nullable Boolean async) {
this.async = async;
return this;
}
/**
* Initializes the value for the {@link DeleteSpaceRequest#getRecursive() recursive} attribute.
* @param recursive The value for recursive (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
public final Builder recursive(@Nullable Boolean recursive) {
this.recursive = recursive;
return this;
}
/**
* Initializes the value for the {@link DeleteSpaceRequest#getSpaceId() spaceId} attribute.
* @param spaceId The value for spaceId
* @return {@code this} builder for use in a chained invocation
*/
public final Builder spaceId(String spaceId) {
this.spaceId = Objects.requireNonNull(spaceId, "spaceId");
initBits &= ~INIT_BIT_SPACE_ID;
return this;
}
/**
* Builds a new {@link DeleteSpaceRequest DeleteSpaceRequest}.
* @return An immutable instance of DeleteSpaceRequest
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public DeleteSpaceRequest build() {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
return new DeleteSpaceRequest(this);
}
private String formatRequiredAttributesMessage() {
List attributes = new ArrayList<>();
if ((initBits & INIT_BIT_SPACE_ID) != 0) attributes.add("spaceId");
return "Cannot build DeleteSpaceRequest, some of required attributes are not set " + attributes;
}
}
}