org.cloudfoundry.client.v3.spaces.AssignSpaceIsolationSegmentResponse Maven / Gradle / Ivy
package org.cloudfoundry.client.v3.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.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.client.v3.*;
import org.cloudfoundry.client.v3.Relationship;
import org.cloudfoundry.client.v3.RelationshipResponse;
import org.immutables.value.Generated;
/**
* The response payload for the Assign Isolation Segment operation
*/
@Generated(from = "_AssignSpaceIsolationSegmentResponse", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class AssignSpaceIsolationSegmentResponse
extends org.cloudfoundry.client.v3.spaces._AssignSpaceIsolationSegmentResponse {
private final @Nullable Relationship data;
private final Map links;
private AssignSpaceIsolationSegmentResponse(AssignSpaceIsolationSegmentResponse.Builder builder) {
this.data = builder.data;
this.links = createUnmodifiableMap(false, false, builder.links);
}
/**
* The relationship
*/
@JsonProperty("data")
@Override
public @Nullable Relationship getData() {
return data;
}
/**
* The links
*/
@JsonProperty("links")
@Override
public Map getLinks() {
return links;
}
/**
* This instance is equal to all instances of {@code AssignSpaceIsolationSegmentResponse} 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 AssignSpaceIsolationSegmentResponse
&& equalTo(0, (AssignSpaceIsolationSegmentResponse) another);
}
private boolean equalTo(int synthetic, AssignSpaceIsolationSegmentResponse another) {
return Objects.equals(data, another.data)
&& links.equals(another.links);
}
/**
* Computes a hash code from attributes: {@code data}, {@code links}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + Objects.hashCode(data);
h += (h << 5) + links.hashCode();
return h;
}
/**
* Prints the immutable value {@code AssignSpaceIsolationSegmentResponse} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "AssignSpaceIsolationSegmentResponse{"
+ "data=" + data
+ ", links=" + links
+ "}";
}
/**
* 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 = "_AssignSpaceIsolationSegmentResponse", generator = "Immutables")
@Deprecated
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json extends org.cloudfoundry.client.v3.spaces._AssignSpaceIsolationSegmentResponse {
Relationship data;
Map links = Collections.emptyMap();
@JsonProperty("data")
public void setData(@Nullable Relationship data) {
this.data = data;
}
@JsonProperty("links")
public void setLinks(Map links) {
this.links = links;
}
@Override
public Relationship getData() { throw new UnsupportedOperationException(); }
@Override
public Map getLinks() { 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 AssignSpaceIsolationSegmentResponse fromJson(Json json) {
AssignSpaceIsolationSegmentResponse.Builder builder = AssignSpaceIsolationSegmentResponse.builder();
if (json.data != null) {
builder.data(json.data);
}
if (json.links != null) {
builder.putAllLinks(json.links);
}
return builder.build();
}
/**
* Creates a builder for {@link AssignSpaceIsolationSegmentResponse AssignSpaceIsolationSegmentResponse}.
*
* AssignSpaceIsolationSegmentResponse.builder()
* .data(org.cloudfoundry.client.v3.Relationship | null) // nullable {@link AssignSpaceIsolationSegmentResponse#getData() data}
* .link|putAllLinks(String => Link) // {@link AssignSpaceIsolationSegmentResponse#getLinks() links} mappings
* .build();
*
* @return A new AssignSpaceIsolationSegmentResponse builder
*/
public static AssignSpaceIsolationSegmentResponse.Builder builder() {
return new AssignSpaceIsolationSegmentResponse.Builder();
}
/**
* Builds instances of type {@link AssignSpaceIsolationSegmentResponse AssignSpaceIsolationSegmentResponse}.
* 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 = "_AssignSpaceIsolationSegmentResponse", generator = "Immutables")
public static final class Builder {
private Relationship data;
private Map links = new LinkedHashMap();
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code org.cloudfoundry.client.v3.RelationshipResponse} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(RelationshipResponse instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
/**
* Fill a builder with attribute values from the provided {@code AssignSpaceIsolationSegmentResponse} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(AssignSpaceIsolationSegmentResponse instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
/**
* Copy abstract value type {@code _AssignSpaceIsolationSegmentResponse} 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(_AssignSpaceIsolationSegmentResponse instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
private void from(short _unused, Object object) {
if (object instanceof RelationshipResponse) {
RelationshipResponse instance = (RelationshipResponse) object;
Relationship dataValue = instance.getData();
if (dataValue != null) {
data(dataValue);
}
putAllLinks(instance.getLinks());
}
}
/**
* Initializes the value for the {@link AssignSpaceIsolationSegmentResponse#getData() data} attribute.
* @param data The value for data (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("data")
public final Builder data(@Nullable Relationship data) {
this.data = data;
return this;
}
/**
* Put one entry to the {@link AssignSpaceIsolationSegmentResponse#getLinks() links} map.
* @param key The key in the links map
* @param value The associated value in the links map
* @return {@code this} builder for use in a chained invocation
*/
public final Builder link(String key, Link value) {
this.links.put(key, value);
return this;
}
/**
* Put one entry to the {@link AssignSpaceIsolationSegmentResponse#getLinks() links} map. Nulls are not permitted
* @param entry The key and value entry
* @return {@code this} builder for use in a chained invocation
*/
public final Builder link(Map.Entry entry) {
String k = entry.getKey();
Link v = entry.getValue();
this.links.put(k, v);
return this;
}
/**
* Sets or replaces all mappings from the specified map as entries for the {@link AssignSpaceIsolationSegmentResponse#getLinks() links} map. Nulls are not permitted
* @param entries The entries that will be added to the links map
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("links")
public final Builder links(Map entries) {
this.links.clear();
return putAllLinks(entries);
}
/**
* Put all mappings from the specified map as entries to {@link AssignSpaceIsolationSegmentResponse#getLinks() links} map. Nulls are not permitted
* @param entries The entries that will be added to the links map
* @return {@code this} builder for use in a chained invocation
*/
public final Builder putAllLinks(Map entries) {
for (Map.Entry e : entries.entrySet()) {
String k = e.getKey();
Link v = e.getValue();
this.links.put(k, v);
}
return this;
}
/**
* Builds a new {@link AssignSpaceIsolationSegmentResponse AssignSpaceIsolationSegmentResponse}.
* @return An immutable instance of AssignSpaceIsolationSegmentResponse
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public AssignSpaceIsolationSegmentResponse build() {
return new AssignSpaceIsolationSegmentResponse(this);
}
}
private static Map createUnmodifiableMap(boolean checkNulls, boolean skipNulls, Map extends K, ? extends V> map) {
switch (map.size()) {
case 0: return Collections.emptyMap();
case 1: {
Map.Entry extends K, ? extends V> e = map.entrySet().iterator().next();
K k = e.getKey();
V v = e.getValue();
if (checkNulls) {
Objects.requireNonNull(k, "key");
Objects.requireNonNull(v, v == null ? "value for key: " + k : null);
}
if (skipNulls && (k == null || v == null)) {
return Collections.emptyMap();
}
return Collections.singletonMap(k, v);
}
default: {
Map linkedMap = new LinkedHashMap<>(map.size() * 4 / 3 + 1);
if (skipNulls || checkNulls) {
for (Map.Entry extends K, ? extends V> e : map.entrySet()) {
K k = e.getKey();
V v = e.getValue();
if (skipNulls) {
if (k == null || v == null) continue;
} else if (checkNulls) {
Objects.requireNonNull(k, "key");
Objects.requireNonNull(v, v == null ? "value for key: " + k : null);
}
linkedMap.put(k, v);
}
} else {
linkedMap.putAll(map);
}
return Collections.unmodifiableMap(linkedMap);
}
}
}
}