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