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