org.cloudfoundry.client.v2.userprovidedserviceinstances.UserProvidedServiceInstanceEntity Maven / Gradle / Ivy
package org.cloudfoundry.client.v2.userprovidedserviceinstances;
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.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.client.v2.serviceinstances.BaseServiceInstanceEntity;
import org.immutables.value.Generated;
/**
* The entity response payload for User Provided Service Instances
*/
@Generated(from = "_UserProvidedServiceInstanceEntity", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class UserProvidedServiceInstanceEntity
extends org.cloudfoundry.client.v2.userprovidedserviceinstances._UserProvidedServiceInstanceEntity {
private final @Nullable Map credentials;
private final @Nullable String name;
private final @Nullable String routesUrl;
private final @Nullable String serviceBindingsUrl;
private final @Nullable String sharedFromUrl;
private final @Nullable String sharedToUrl;
private final @Nullable String spaceId;
private final @Nullable String spaceUrl;
private final @Nullable List tags;
private final @Nullable String type;
private final @Nullable String routeServiceUrl;
private final @Nullable String syslogDrainUrl;
private UserProvidedServiceInstanceEntity(UserProvidedServiceInstanceEntity.Builder builder) {
this.credentials = builder.credentials == null ? null : createUnmodifiableMap(false, false, builder.credentials);
this.name = builder.name;
this.routesUrl = builder.routesUrl;
this.serviceBindingsUrl = builder.serviceBindingsUrl;
this.sharedFromUrl = builder.sharedFromUrl;
this.sharedToUrl = builder.sharedToUrl;
this.spaceId = builder.spaceId;
this.spaceUrl = builder.spaceUrl;
this.tags = builder.tags == null ? null : createUnmodifiableList(true, builder.tags);
this.type = builder.type;
this.routeServiceUrl = builder.routeServiceUrl;
this.syslogDrainUrl = builder.syslogDrainUrl;
}
/**
* The credentials
*/
@JsonProperty("credentials")
@Override
public @Nullable Map getCredentials() {
return credentials;
}
/**
* The name
*/
@JsonProperty("name")
@Override
public @Nullable String getName() {
return name;
}
/**
* The routes url
*/
@JsonProperty("routes_url")
@Override
public @Nullable String getRoutesUrl() {
return routesUrl;
}
/**
* The service bindings url
*/
@JsonProperty("service_bindings_url")
@Override
public @Nullable String getServiceBindingsUrl() {
return serviceBindingsUrl;
}
/**
* The shared from url
*/
@JsonProperty("shared_from_url")
@Override
public @Nullable String getSharedFromUrl() {
return sharedFromUrl;
}
/**
* The shared to url
*/
@JsonProperty("shared_to_url")
@Override
public @Nullable String getSharedToUrl() {
return sharedToUrl;
}
/**
* The space id
*/
@JsonProperty("space_guid")
@Override
public @Nullable String getSpaceId() {
return spaceId;
}
/**
* The space url
*/
@JsonProperty("space_url")
@Override
public @Nullable String getSpaceUrl() {
return spaceUrl;
}
/**
* A list of tags for the service instance
*/
@JsonProperty("tags")
@Override
public @Nullable List getTags() {
return tags;
}
/**
* The type
*/
@JsonProperty("type")
@Override
public @Nullable String getType() {
return type;
}
/**
* URL to which requests for bound routes will be forwarded
*/
@JsonProperty("route_service_url")
@Override
public @Nullable String getRouteServiceUrl() {
return routeServiceUrl;
}
/**
* The url for the syslog_drain to direct to
*/
@JsonProperty("syslog_drain_url")
@Override
public @Nullable String getSyslogDrainUrl() {
return syslogDrainUrl;
}
/**
* This instance is equal to all instances of {@code UserProvidedServiceInstanceEntity} 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 UserProvidedServiceInstanceEntity
&& equalTo(0, (UserProvidedServiceInstanceEntity) another);
}
private boolean equalTo(int synthetic, UserProvidedServiceInstanceEntity another) {
return Objects.equals(credentials, another.credentials)
&& Objects.equals(name, another.name)
&& Objects.equals(routesUrl, another.routesUrl)
&& Objects.equals(serviceBindingsUrl, another.serviceBindingsUrl)
&& Objects.equals(sharedFromUrl, another.sharedFromUrl)
&& Objects.equals(sharedToUrl, another.sharedToUrl)
&& Objects.equals(spaceId, another.spaceId)
&& Objects.equals(spaceUrl, another.spaceUrl)
&& Objects.equals(tags, another.tags)
&& Objects.equals(type, another.type)
&& Objects.equals(routeServiceUrl, another.routeServiceUrl)
&& Objects.equals(syslogDrainUrl, another.syslogDrainUrl);
}
/**
* Computes a hash code from attributes: {@code credentials}, {@code name}, {@code routesUrl}, {@code serviceBindingsUrl}, {@code sharedFromUrl}, {@code sharedToUrl}, {@code spaceId}, {@code spaceUrl}, {@code tags}, {@code type}, {@code routeServiceUrl}, {@code syslogDrainUrl}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + Objects.hashCode(credentials);
h += (h << 5) + Objects.hashCode(name);
h += (h << 5) + Objects.hashCode(routesUrl);
h += (h << 5) + Objects.hashCode(serviceBindingsUrl);
h += (h << 5) + Objects.hashCode(sharedFromUrl);
h += (h << 5) + Objects.hashCode(sharedToUrl);
h += (h << 5) + Objects.hashCode(spaceId);
h += (h << 5) + Objects.hashCode(spaceUrl);
h += (h << 5) + Objects.hashCode(tags);
h += (h << 5) + Objects.hashCode(type);
h += (h << 5) + Objects.hashCode(routeServiceUrl);
h += (h << 5) + Objects.hashCode(syslogDrainUrl);
return h;
}
/**
* Prints the immutable value {@code UserProvidedServiceInstanceEntity} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "UserProvidedServiceInstanceEntity{"
+ "credentials=" + credentials
+ ", name=" + name
+ ", routesUrl=" + routesUrl
+ ", serviceBindingsUrl=" + serviceBindingsUrl
+ ", sharedFromUrl=" + sharedFromUrl
+ ", sharedToUrl=" + sharedToUrl
+ ", spaceId=" + spaceId
+ ", spaceUrl=" + spaceUrl
+ ", tags=" + tags
+ ", type=" + type
+ ", routeServiceUrl=" + routeServiceUrl
+ ", syslogDrainUrl=" + syslogDrainUrl
+ "}";
}
/**
* 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 = "_UserProvidedServiceInstanceEntity", generator = "Immutables")
@Deprecated
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json
extends org.cloudfoundry.client.v2.userprovidedserviceinstances._UserProvidedServiceInstanceEntity {
Map credentials = null;
String name;
String routesUrl;
String serviceBindingsUrl;
String sharedFromUrl;
String sharedToUrl;
String spaceId;
String spaceUrl;
List tags = null;
String type;
String routeServiceUrl;
String syslogDrainUrl;
@JsonProperty("credentials")
public void setCredentials(@Nullable Map credentials) {
this.credentials = credentials;
}
@JsonProperty("name")
public void setName(@Nullable String name) {
this.name = name;
}
@JsonProperty("routes_url")
public void setRoutesUrl(@Nullable String routesUrl) {
this.routesUrl = routesUrl;
}
@JsonProperty("service_bindings_url")
public void setServiceBindingsUrl(@Nullable String serviceBindingsUrl) {
this.serviceBindingsUrl = serviceBindingsUrl;
}
@JsonProperty("shared_from_url")
public void setSharedFromUrl(@Nullable String sharedFromUrl) {
this.sharedFromUrl = sharedFromUrl;
}
@JsonProperty("shared_to_url")
public void setSharedToUrl(@Nullable String sharedToUrl) {
this.sharedToUrl = sharedToUrl;
}
@JsonProperty("space_guid")
public void setSpaceId(@Nullable String spaceId) {
this.spaceId = spaceId;
}
@JsonProperty("space_url")
public void setSpaceUrl(@Nullable String spaceUrl) {
this.spaceUrl = spaceUrl;
}
@JsonProperty("tags")
public void setTags(@Nullable List tags) {
this.tags = tags;
}
@JsonProperty("type")
public void setType(@Nullable String type) {
this.type = type;
}
@JsonProperty("route_service_url")
public void setRouteServiceUrl(@Nullable String routeServiceUrl) {
this.routeServiceUrl = routeServiceUrl;
}
@JsonProperty("syslog_drain_url")
public void setSyslogDrainUrl(@Nullable String syslogDrainUrl) {
this.syslogDrainUrl = syslogDrainUrl;
}
@Override
public Map getCredentials() { throw new UnsupportedOperationException(); }
@Override
public String getName() { throw new UnsupportedOperationException(); }
@Override
public String getRoutesUrl() { throw new UnsupportedOperationException(); }
@Override
public String getServiceBindingsUrl() { throw new UnsupportedOperationException(); }
@Override
public String getSharedFromUrl() { throw new UnsupportedOperationException(); }
@Override
public String getSharedToUrl() { throw new UnsupportedOperationException(); }
@Override
public String getSpaceId() { throw new UnsupportedOperationException(); }
@Override
public String getSpaceUrl() { throw new UnsupportedOperationException(); }
@Override
public List getTags() { throw new UnsupportedOperationException(); }
@Override
public String getType() { throw new UnsupportedOperationException(); }
@Override
public String getRouteServiceUrl() { throw new UnsupportedOperationException(); }
@Override
public String getSyslogDrainUrl() { 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 UserProvidedServiceInstanceEntity fromJson(Json json) {
UserProvidedServiceInstanceEntity.Builder builder = UserProvidedServiceInstanceEntity.builder();
if (json.credentials != null) {
builder.putAllCredentials(json.credentials);
}
if (json.name != null) {
builder.name(json.name);
}
if (json.routesUrl != null) {
builder.routesUrl(json.routesUrl);
}
if (json.serviceBindingsUrl != null) {
builder.serviceBindingsUrl(json.serviceBindingsUrl);
}
if (json.sharedFromUrl != null) {
builder.sharedFromUrl(json.sharedFromUrl);
}
if (json.sharedToUrl != null) {
builder.sharedToUrl(json.sharedToUrl);
}
if (json.spaceId != null) {
builder.spaceId(json.spaceId);
}
if (json.spaceUrl != null) {
builder.spaceUrl(json.spaceUrl);
}
if (json.tags != null) {
builder.addAllTags(json.tags);
}
if (json.type != null) {
builder.type(json.type);
}
if (json.routeServiceUrl != null) {
builder.routeServiceUrl(json.routeServiceUrl);
}
if (json.syslogDrainUrl != null) {
builder.syslogDrainUrl(json.syslogDrainUrl);
}
return builder.build();
}
/**
* Creates a builder for {@link UserProvidedServiceInstanceEntity UserProvidedServiceInstanceEntity}.
*
* UserProvidedServiceInstanceEntity.builder()
* .credentials(Map<String, Object> | null) // nullable {@link UserProvidedServiceInstanceEntity#getCredentials() credentials}
* .name(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getName() name}
* .routesUrl(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getRoutesUrl() routesUrl}
* .serviceBindingsUrl(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getServiceBindingsUrl() serviceBindingsUrl}
* .sharedFromUrl(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getSharedFromUrl() sharedFromUrl}
* .sharedToUrl(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getSharedToUrl() sharedToUrl}
* .spaceId(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getSpaceId() spaceId}
* .spaceUrl(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getSpaceUrl() spaceUrl}
* .tags(List<String> | null) // nullable {@link UserProvidedServiceInstanceEntity#getTags() tags}
* .type(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getType() type}
* .routeServiceUrl(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getRouteServiceUrl() routeServiceUrl}
* .syslogDrainUrl(String | null) // nullable {@link UserProvidedServiceInstanceEntity#getSyslogDrainUrl() syslogDrainUrl}
* .build();
*
* @return A new UserProvidedServiceInstanceEntity builder
*/
public static UserProvidedServiceInstanceEntity.Builder builder() {
return new UserProvidedServiceInstanceEntity.Builder();
}
/**
* Builds instances of type {@link UserProvidedServiceInstanceEntity UserProvidedServiceInstanceEntity}.
* 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 = "_UserProvidedServiceInstanceEntity", generator = "Immutables")
public static final class Builder {
private Map credentials = null;
private String name;
private String routesUrl;
private String serviceBindingsUrl;
private String sharedFromUrl;
private String sharedToUrl;
private String spaceId;
private String spaceUrl;
private List tags = null;
private String type;
private String routeServiceUrl;
private String syslogDrainUrl;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code UserProvidedServiceInstanceEntity} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(UserProvidedServiceInstanceEntity instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
/**
* Copy abstract value type {@code _UserProvidedServiceInstanceEntity} 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(_UserProvidedServiceInstanceEntity 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.serviceinstances.BaseServiceInstanceEntity} instance.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(BaseServiceInstanceEntity instance) {
Objects.requireNonNull(instance, "instance");
from((short) 0, (Object) instance);
return this;
}
private void from(short _unused, Object object) {
if (object instanceof org.cloudfoundry.client.v2.userprovidedserviceinstances._UserProvidedServiceInstanceEntity) {
org.cloudfoundry.client.v2.userprovidedserviceinstances._UserProvidedServiceInstanceEntity instance = (org.cloudfoundry.client.v2.userprovidedserviceinstances._UserProvidedServiceInstanceEntity) object;
String routeServiceUrlValue = instance.getRouteServiceUrl();
if (routeServiceUrlValue != null) {
routeServiceUrl(routeServiceUrlValue);
}
String syslogDrainUrlValue = instance.getSyslogDrainUrl();
if (syslogDrainUrlValue != null) {
syslogDrainUrl(syslogDrainUrlValue);
}
}
if (object instanceof BaseServiceInstanceEntity) {
BaseServiceInstanceEntity instance = (BaseServiceInstanceEntity) object;
String spaceUrlValue = instance.getSpaceUrl();
if (spaceUrlValue != null) {
spaceUrl(spaceUrlValue);
}
String spaceIdValue = instance.getSpaceId();
if (spaceIdValue != null) {
spaceId(spaceIdValue);
}
String sharedFromUrlValue = instance.getSharedFromUrl();
if (sharedFromUrlValue != null) {
sharedFromUrl(sharedFromUrlValue);
}
Map credentialsValue = instance.getCredentials();
if (credentialsValue != null) {
putAllCredentials(credentialsValue);
}
String nameValue = instance.getName();
if (nameValue != null) {
name(nameValue);
}
String serviceBindingsUrlValue = instance.getServiceBindingsUrl();
if (serviceBindingsUrlValue != null) {
serviceBindingsUrl(serviceBindingsUrlValue);
}
String typeValue = instance.getType();
if (typeValue != null) {
type(typeValue);
}
String sharedToUrlValue = instance.getSharedToUrl();
if (sharedToUrlValue != null) {
sharedToUrl(sharedToUrlValue);
}
String routesUrlValue = instance.getRoutesUrl();
if (routesUrlValue != null) {
routesUrl(routesUrlValue);
}
List tagsValue = instance.getTags();
if (tagsValue != null) {
addAllTags(tagsValue);
}
}
}
/**
* Put one entry to the {@link UserProvidedServiceInstanceEntity#getCredentials() credentials} map.
* @param key The key in the credentials map
* @param value The associated value in the credentials map
* @return {@code this} builder for use in a chained invocation
*/
public final Builder credential(String key, Object value) {
if (this.credentials == null) {
this.credentials = new LinkedHashMap();
}
this.credentials.put(key, value);
return this;
}
/**
* Put one entry to the {@link UserProvidedServiceInstanceEntity#getCredentials() credentials} 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 credential(Map.Entry entry) {
if (this.credentials == null) {
this.credentials = new LinkedHashMap();
}
String k = entry.getKey();
Object v = entry.getValue();
this.credentials.put(k, v);
return this;
}
/**
* Sets or replaces all mappings from the specified map as entries for the {@link UserProvidedServiceInstanceEntity#getCredentials() credentials} map. Nulls are not permitted as keys or values, but parameter itself can be null
* @param entries The entries that will be added to the credentials map
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("credentials")
public final Builder credentials(@Nullable Map entries) {
if (entries == null) {
this.credentials = null;
return this;
}
this.credentials = new LinkedHashMap();
return putAllCredentials(entries);
}
/**
* Put all mappings from the specified map as entries to {@link UserProvidedServiceInstanceEntity#getCredentials() credentials} map. Nulls are not permitted
* @param entries The entries that will be added to the credentials map
* @return {@code this} builder for use in a chained invocation
*/
public final Builder putAllCredentials(Map entries) {
if (this.credentials == null) {
this.credentials = new LinkedHashMap();
}
for (Map.Entry e : entries.entrySet()) {
String k = e.getKey();
Object v = e.getValue();
this.credentials.put(k, v);
}
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getName() name} attribute.
* @param name The value for name (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("name")
public final Builder name(@Nullable String name) {
this.name = name;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getRoutesUrl() routesUrl} attribute.
* @param routesUrl The value for routesUrl (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("routes_url")
public final Builder routesUrl(@Nullable String routesUrl) {
this.routesUrl = routesUrl;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getServiceBindingsUrl() serviceBindingsUrl} attribute.
* @param serviceBindingsUrl The value for serviceBindingsUrl (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("service_bindings_url")
public final Builder serviceBindingsUrl(@Nullable String serviceBindingsUrl) {
this.serviceBindingsUrl = serviceBindingsUrl;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getSharedFromUrl() sharedFromUrl} attribute.
* @param sharedFromUrl The value for sharedFromUrl (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("shared_from_url")
public final Builder sharedFromUrl(@Nullable String sharedFromUrl) {
this.sharedFromUrl = sharedFromUrl;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getSharedToUrl() sharedToUrl} attribute.
* @param sharedToUrl The value for sharedToUrl (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("shared_to_url")
public final Builder sharedToUrl(@Nullable String sharedToUrl) {
this.sharedToUrl = sharedToUrl;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getSpaceId() spaceId} attribute.
* @param spaceId The value for spaceId (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("space_guid")
public final Builder spaceId(@Nullable String spaceId) {
this.spaceId = spaceId;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getSpaceUrl() spaceUrl} attribute.
* @param spaceUrl The value for spaceUrl (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("space_url")
public final Builder spaceUrl(@Nullable String spaceUrl) {
this.spaceUrl = spaceUrl;
return this;
}
/**
* Adds one element to {@link UserProvidedServiceInstanceEntity#getTags() tags} list.
* @param element A tags element
* @return {@code this} builder for use in a chained invocation
*/
public final Builder tag(String element) {
if (this.tags == null) {
this.tags = new ArrayList();
}
this.tags.add(Objects.requireNonNull(element, "tags element"));
return this;
}
/**
* Adds elements to {@link UserProvidedServiceInstanceEntity#getTags() tags} list.
* @param elements An array of tags elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder tags(String... elements) {
if (this.tags == null) {
this.tags = new ArrayList();
}
for (String element : elements) {
this.tags.add(Objects.requireNonNull(element, "tags element"));
}
return this;
}
/**
* Sets or replaces all elements for {@link UserProvidedServiceInstanceEntity#getTags() tags} list.
* @param elements An iterable of tags elements
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("tags")
public final Builder tags(@Nullable Iterable elements) {
if (elements == null) {
this.tags = null;
return this;
}
this.tags = new ArrayList();
return addAllTags(elements);
}
/**
* Adds elements to {@link UserProvidedServiceInstanceEntity#getTags() tags} list.
* @param elements An iterable of tags elements
* @return {@code this} builder for use in a chained invocation
*/
public final Builder addAllTags(Iterable elements) {
Objects.requireNonNull(elements, "tags element");
if (this.tags == null) {
this.tags = new ArrayList();
}
for (String element : elements) {
this.tags.add(Objects.requireNonNull(element, "tags element"));
}
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getType() type} attribute.
* @param type The value for type (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("type")
public final Builder type(@Nullable String type) {
this.type = type;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getRouteServiceUrl() routeServiceUrl} attribute.
* @param routeServiceUrl The value for routeServiceUrl (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("route_service_url")
public final Builder routeServiceUrl(@Nullable String routeServiceUrl) {
this.routeServiceUrl = routeServiceUrl;
return this;
}
/**
* Initializes the value for the {@link UserProvidedServiceInstanceEntity#getSyslogDrainUrl() syslogDrainUrl} attribute.
* @param syslogDrainUrl The value for syslogDrainUrl (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("syslog_drain_url")
public final Builder syslogDrainUrl(@Nullable String syslogDrainUrl) {
this.syslogDrainUrl = syslogDrainUrl;
return this;
}
/**
* Builds a new {@link UserProvidedServiceInstanceEntity UserProvidedServiceInstanceEntity}.
* @return An immutable instance of UserProvidedServiceInstanceEntity
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public UserProvidedServiceInstanceEntity build() {
return new UserProvidedServiceInstanceEntity(this);
}
}
private static List createSafeList(Iterable extends T> iterable, boolean checkNulls, boolean skipNulls) {
ArrayList list;
if (iterable instanceof Collection>) {
int size = ((Collection>) iterable).size();
if (size == 0) return Collections.emptyList();
list = new ArrayList<>(size);
} else {
list = new ArrayList<>();
}
for (T element : iterable) {
if (skipNulls && element == null) continue;
if (checkNulls) Objects.requireNonNull(element, "element");
list.add(element);
}
return list;
}
private static List createUnmodifiableList(boolean clone, List list) {
switch(list.size()) {
case 0: return Collections.emptyList();
case 1: return Collections.singletonList(list.get(0));
default:
if (clone) {
return Collections.unmodifiableList(new ArrayList<>(list));
} else {
if (list instanceof ArrayList>) {
((ArrayList>) list).trimToSize();
}
return Collections.unmodifiableList(list);
}
}
}
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);
}
}
}
}