org.cloudfoundry.client.v3.routes.Application Maven / Gradle / Ivy
package org.cloudfoundry.client.v3.routes;
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.List;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.immutables.value.Generated;
/**
* Represents an application to route traffic to.
*/
@Generated(from = "_Application", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class Application extends org.cloudfoundry.client.v3.routes._Application {
private final String applicationId;
private final @Nullable Process process;
private Application(Application.Builder builder) {
this.applicationId = builder.applicationId;
this.process = builder.process;
}
/**
* The application id
*/
@JsonProperty("guid")
@Override
public String getApplicationId() {
return applicationId;
}
/**
* The Process
*/
@JsonProperty("process")
@Override
public @Nullable Process getProcess() {
return process;
}
/**
* This instance is equal to all instances of {@code Application} 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 Application
&& equalTo(0, (Application) another);
}
private boolean equalTo(int synthetic, Application another) {
return applicationId.equals(another.applicationId)
&& Objects.equals(process, another.process);
}
/**
* Computes a hash code from attributes: {@code applicationId}, {@code process}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 5381;
h += (h << 5) + applicationId.hashCode();
h += (h << 5) + Objects.hashCode(process);
return h;
}
/**
* Prints the immutable value {@code Application} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return "Application{"
+ "applicationId=" + applicationId
+ ", process=" + process
+ "}";
}
/**
* 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 = "_Application", generator = "Immutables")
@Deprecated
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json extends org.cloudfoundry.client.v3.routes._Application {
String applicationId;
Process process;
@JsonProperty("guid")
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
@JsonProperty("process")
public void setProcess(@Nullable Process process) {
this.process = process;
}
@Override
public String getApplicationId() { throw new UnsupportedOperationException(); }
@Override
public Process getProcess() { 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 Application fromJson(Json json) {
Application.Builder builder = Application.builder();
if (json.applicationId != null) {
builder.applicationId(json.applicationId);
}
if (json.process != null) {
builder.process(json.process);
}
return builder.build();
}
/**
* Creates a builder for {@link Application Application}.
*
* Application.builder()
* .applicationId(String) // required {@link Application#getApplicationId() applicationId}
* .process(Process | null) // nullable {@link Application#getProcess() process}
* .build();
*
* @return A new Application builder
*/
public static Application.Builder builder() {
return new Application.Builder();
}
/**
* Builds instances of type {@link Application Application}.
* 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 = "_Application", generator = "Immutables")
public static final class Builder {
private static final long INIT_BIT_APPLICATION_ID = 0x1L;
private long initBits = 0x1L;
private String applicationId;
private Process process;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code Application} instance.
* Regular attribute values will be replaced with those from the given instance.
* Absent optional values will not replace present values.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(Application instance) {
return from((_Application) instance);
}
/**
* Copy abstract value type {@code _Application} instance into builder.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
final Builder from(_Application instance) {
Objects.requireNonNull(instance, "instance");
applicationId(instance.getApplicationId());
Process processValue = instance.getProcess();
if (processValue != null) {
process(processValue);
}
return this;
}
/**
* Initializes the value for the {@link Application#getApplicationId() applicationId} attribute.
* @param applicationId The value for applicationId
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("guid")
public final Builder applicationId(String applicationId) {
this.applicationId = Objects.requireNonNull(applicationId, "applicationId");
initBits &= ~INIT_BIT_APPLICATION_ID;
return this;
}
/**
* Initializes the value for the {@link Application#getProcess() process} attribute.
* @param process The value for process (can be {@code null})
* @return {@code this} builder for use in a chained invocation
*/
@JsonProperty("process")
public final Builder process(@Nullable Process process) {
this.process = process;
return this;
}
/**
* Builds a new {@link Application Application}.
* @return An immutable instance of Application
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public Application build() {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
return new Application(this);
}
private String formatRequiredAttributesMessage() {
List attributes = new ArrayList<>();
if ((initBits & INIT_BIT_APPLICATION_ID) != 0) attributes.add("applicationId");
return "Cannot build Application, some of required attributes are not set " + attributes;
}
}
}