org.cloudfoundry.client.v2.spaces.AssociateSpaceAuditorResponse Maven / Gradle / Ivy
package org.cloudfoundry.client.v2.spaces;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.client.v2.Metadata;
import org.immutables.value.Generated;
/**
* The response payload for the Associate Auditor with the Space operation
*/
@Generated(from = "_AssociateSpaceAuditorResponse", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class AssociateSpaceAuditorResponse
extends org.cloudfoundry.client.v2.spaces._AssociateSpaceAuditorResponse {
private final @Nullable SpaceEntity entity;
private final @Nullable Metadata metadata;
private AssociateSpaceAuditorResponse(AssociateSpaceAuditorResponse.Builder builder) {
this.entity = builder.entity;
this.metadata = builder.metadata;
}
/**
* The resource's entity
*/
@JsonProperty("entity")
@Override
public @Nullable SpaceEntity getEntity() {
return entity;
}
/**
* The resource's metadata
*/
@JsonProperty("metadata")
@Override
public @Nullable Metadata getMetadata() {
return metadata;
}
/**
* This instance is equal to all instances of {@code AssociateSpaceAuditorResponse} 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 AssociateSpaceAuditorResponse
&& equalTo(0, (AssociateSpaceAuditorResponse) another);
}
private boolean equalTo(int synthetic, AssociateSpaceAuditorResponse another) {
return Objects.equals(entity, another.entity)
&& Objects.equals(metadata, another.metadata);
}
/**
* Computes a hash code from attributes: {@code entity}, {@code metadata}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + Objects.hashCode(entity);
h += (h << 5) + Objects.hashCode(metadata);
return h;
}
/**
* Prints the immutable value {@code AssociateSpaceAuditorResponse} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "AssociateSpaceAuditorResponse{"
+ "entity=" + entity
+ ", metadata=" + metadata
+ "}";
}
/**
* Utility type used to correctly read immutable object from JSON representation.
* @deprecated Do not use this type directly, it exists only for the Jackson-binding infrastructure
*/
@Generated(from = "_AssociateSpaceAuditorResponse", generator = "Immutables")
@Deprecated
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json extends org.cloudfoundry.client.v2.spaces._AssociateSpaceAuditorResponse {
SpaceEntity entity;
Metadata metadata;
@JsonProperty("entity")
public void setEntity(@Nullable SpaceEntity entity) {
this.entity = entity;
}
@JsonProperty("metadata")
public void setMetadata(@Nullable Metadata metadata) {
this.metadata = metadata;
}
@Override
public SpaceEntity getEntity() { throw new UnsupportedOperationException(); }
@Override
public Metadata getMetadata() { throw new UnsupportedOperationException(); }
}
/**
* @param json A JSON-bindable data structure
* @return An immutable value type
* @deprecated Do not use this method directly, it exists only for the Jackson-binding infrastructure
*/
@Deprecated
@JsonCreator(mode = JsonCreator.Mode.DELEGATING)
static AssociateSpaceAuditorResponse fromJson(Json json) {
AssociateSpaceAuditorResponse.Builder builder = AssociateSpaceAuditorResponse.builder();
if (json.entity != null) {
builder.entity(json.entity);
}
if (json.metadata != null) {
builder.metadata(json.metadata);
}
return builder.build();
}
/**
* Creates a builder for {@link AssociateSpaceAuditorResponse AssociateSpaceAuditorResponse}.
*
* AssociateSpaceAuditorResponse.builder()
* .entity(org.cloudfoundry.client.v2.spaces.SpaceEntity | null) // nullable {@link AssociateSpaceAuditorResponse#getEntity() entity}
* .metadata(org.cloudfoundry.client.v2.Metadata | null) // nullable {@link AssociateSpaceAuditorResponse#getMetadata() metadata}
* .build();
*
* @return A new AssociateSpaceAuditorResponse builder
*/
public static AssociateSpaceAuditorResponse.Builder builder() {
return new AssociateSpaceAuditorResponse.Builder();
}
/**
* Builds instances of type {@link AssociateSpaceAuditorResponse AssociateSpaceAuditorResponse}.
* 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 = "_AssociateSpaceAuditorResponse", generator = "Immutables")
public static final class Builder {
private SpaceEntity entity;
private Metadata metadata;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code org.cloudfoundry.client.v2.spaces.AbstractSpaceResource} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(AbstractSpaceResource instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
/**
* Fill a builder with attribute values from the provided {@code AssociateSpaceAuditorResponse} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(AssociateSpaceAuditorResponse instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
/**
* Copy abstract value type {@code _AssociateSpaceAuditorResponse} 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(_AssociateSpaceAuditorResponse instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
private void from(short _unused, Object object) {
long bits = 0;
if (object instanceof AbstractSpaceResource) {
AbstractSpaceResource instance = (AbstractSpaceResource) object;
if ((bits & 0x1L) == 0) {
Metadata metadataValue = instance.getMetadata();
if (metadataValue != null) {
metadata(metadataValue);
}
bits |= 0x1L;
}
}
if (object instanceof org.cloudfoundry.client.v2.spaces._AssociateSpaceAuditorResponse) {
org.cloudfoundry.client.v2.spaces._AssociateSpaceAuditorResponse instance = (org.cloudfoundry.client.v2.spaces._AssociateSpaceAuditorResponse) object;
if ((bits & 0x1L) == 0) {
Metadata metadataValue = instance.getMetadata();
if (metadataValue != null) {
metadata(metadataValue);
}
bits |= 0x1L;
}
SpaceEntity entityValue = instance.getEntity();
if (entityValue != null) {
entity(entityValue);
}
}
}
/**
* Initializes the value for the {@link AssociateSpaceAuditorResponse#getEntity() entity} attribute.
* @param entity The value for entity (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("entity")
public final Builder entity(@Nullable SpaceEntity entity) {
this.entity = entity;
return this;
}
/**
* Initializes the value for the {@link AssociateSpaceAuditorResponse#getMetadata() metadata} attribute.
* @param metadata The value for metadata (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("metadata")
public final Builder metadata(@Nullable Metadata metadata) {
this.metadata = metadata;
return this;
}
/**
* Builds a new {@link AssociateSpaceAuditorResponse AssociateSpaceAuditorResponse}.
* @return An immutable instance of AssociateSpaceAuditorResponse
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public AssociateSpaceAuditorResponse build() {
return new AssociateSpaceAuditorResponse(this);
}
}
}