org.cloudfoundry.client.v2.routemappings.CreateRouteMappingResponse Maven / Gradle / Ivy
package org.cloudfoundry.client.v2.routemappings;
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 Create a Route Mapping operation
*/
@Generated(from = "_CreateRouteMappingResponse", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class CreateRouteMappingResponse
extends org.cloudfoundry.client.v2.routemappings._CreateRouteMappingResponse {
private final @Nullable RouteMappingEntity entity;
private final @Nullable Metadata metadata;
private CreateRouteMappingResponse(CreateRouteMappingResponse.Builder builder) {
this.entity = builder.entity;
this.metadata = builder.metadata;
}
/**
* The resource's entity
*/
@JsonProperty("entity")
@Override
public @Nullable RouteMappingEntity 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 CreateRouteMappingResponse} 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 CreateRouteMappingResponse
&& equalTo(0, (CreateRouteMappingResponse) another);
}
private boolean equalTo(int synthetic, CreateRouteMappingResponse 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 CreateRouteMappingResponse} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "CreateRouteMappingResponse{"
+ "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 = "_CreateRouteMappingResponse", generator = "Immutables")
@Deprecated
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json extends org.cloudfoundry.client.v2.routemappings._CreateRouteMappingResponse {
RouteMappingEntity entity;
Metadata metadata;
@JsonProperty("entity")
public void setEntity(@Nullable RouteMappingEntity entity) {
this.entity = entity;
}
@JsonProperty("metadata")
public void setMetadata(@Nullable Metadata metadata) {
this.metadata = metadata;
}
@Override
public RouteMappingEntity 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 CreateRouteMappingResponse fromJson(Json json) {
CreateRouteMappingResponse.Builder builder = CreateRouteMappingResponse.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 CreateRouteMappingResponse CreateRouteMappingResponse}.
*
* CreateRouteMappingResponse.builder()
* .entity(org.cloudfoundry.client.v2.routemappings.RouteMappingEntity | null) // nullable {@link CreateRouteMappingResponse#getEntity() entity}
* .metadata(org.cloudfoundry.client.v2.Metadata | null) // nullable {@link CreateRouteMappingResponse#getMetadata() metadata}
* .build();
*
* @return A new CreateRouteMappingResponse builder
*/
public static CreateRouteMappingResponse.Builder builder() {
return new CreateRouteMappingResponse.Builder();
}
/**
* Builds instances of type {@link CreateRouteMappingResponse CreateRouteMappingResponse}.
* 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 = "_CreateRouteMappingResponse", generator = "Immutables")
public static final class Builder {
private RouteMappingEntity entity;
private Metadata metadata;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code org.cloudfoundry.client.v2.routemappings.AbstractRouteMappingResource} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(AbstractRouteMappingResource instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
/**
* Fill a builder with attribute values from the provided {@code CreateRouteMappingResponse} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(CreateRouteMappingResponse instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
/**
* Copy abstract value type {@code _CreateRouteMappingResponse} 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(_CreateRouteMappingResponse 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 AbstractRouteMappingResource) {
AbstractRouteMappingResource instance = (AbstractRouteMappingResource) object;
if ((bits & 0x1L) == 0) {
Metadata metadataValue = instance.getMetadata();
if (metadataValue != null) {
metadata(metadataValue);
}
bits |= 0x1L;
}
}
if (object instanceof org.cloudfoundry.client.v2.routemappings._CreateRouteMappingResponse) {
org.cloudfoundry.client.v2.routemappings._CreateRouteMappingResponse instance = (org.cloudfoundry.client.v2.routemappings._CreateRouteMappingResponse) object;
if ((bits & 0x1L) == 0) {
Metadata metadataValue = instance.getMetadata();
if (metadataValue != null) {
metadata(metadataValue);
}
bits |= 0x1L;
}
RouteMappingEntity entityValue = instance.getEntity();
if (entityValue != null) {
entity(entityValue);
}
}
}
/**
* Initializes the value for the {@link CreateRouteMappingResponse#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 RouteMappingEntity entity) {
this.entity = entity;
return this;
}
/**
* Initializes the value for the {@link CreateRouteMappingResponse#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 CreateRouteMappingResponse CreateRouteMappingResponse}.
* @return An immutable instance of CreateRouteMappingResponse
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public CreateRouteMappingResponse build() {
return new CreateRouteMappingResponse(this);
}
}
}