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