
org.glowroot.ui.ImmutableInstrumentationConfigResponse Maven / Gradle / Ivy
package org.glowroot.ui;
import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonCreator;
import org.glowroot.agent.shaded.fasterxml.jackson.annotation.JsonProperty;
import org.glowroot.agent.shaded.google.common.base.MoreObjects;
import org.glowroot.agent.shaded.google.common.base.Preconditions;
import org.glowroot.agent.shaded.google.common.collect.ImmutableList;
import org.glowroot.agent.shaded.google.common.collect.Lists;
import java.util.List;
import javax.annotation.Generated;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
import org.glowroot.common.live.LiveWeavingService;
/**
* Immutable implementation of {@link InstrumentationConfigJsonService.InstrumentationConfigResponse}.
*
* Use builder to create immutable instances:
* {@code ImmutableInstrumentationConfigResponse.builder()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "InstrumentationConfigJsonService.InstrumentationConfigResponse"})
@Immutable
final class ImmutableInstrumentationConfigResponse
implements InstrumentationConfigJsonService.InstrumentationConfigResponse {
private final InstrumentationConfigJsonService.InstrumentationConfigDto config;
private final ImmutableList methodSignatures;
private ImmutableInstrumentationConfigResponse(
InstrumentationConfigJsonService.InstrumentationConfigDto config,
ImmutableList methodSignatures) {
this.config = config;
this.methodSignatures = methodSignatures;
}
/**
* @return value of {@code config} attribute
*/
@JsonProperty
@Override
public InstrumentationConfigJsonService.InstrumentationConfigDto config() {
return config;
}
/**
* @return value of {@code methodSignatures} attribute
*/
@JsonProperty
@Override
public ImmutableList methodSignatures() {
return methodSignatures;
}
/**
* Copy current immutable object by setting value for {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#config() config}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for config
* @return modified copy of the {@code this} object
*/
public final ImmutableInstrumentationConfigResponse withConfig(InstrumentationConfigJsonService.InstrumentationConfigDto value) {
if (this.config == value) return this;
InstrumentationConfigJsonService.InstrumentationConfigDto newValue = Preconditions.checkNotNull(value);
return new ImmutableInstrumentationConfigResponse(newValue, this.methodSignatures);
}
/**
* Copy current immutable object with elements that replace content of {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#methodSignatures() methodSignatures}.
* @param elements elements to set
* @return modified copy of {@code this} object
*/
public final ImmutableInstrumentationConfigResponse withMethodSignatures(LiveWeavingService.MethodSignature... elements) {
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableInstrumentationConfigResponse(this.config, newValue);
}
/**
* Copy current immutable object with elements that replace content of {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#methodSignatures() methodSignatures}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param elements iterable of methodSignatures elements to set
* @return modified copy of {@code this} object
*/
public final ImmutableInstrumentationConfigResponse withMethodSignatures(Iterable extends LiveWeavingService.MethodSignature> elements) {
if (this.methodSignatures == elements) return this;
ImmutableList newValue = ImmutableList.copyOf(elements);
return new ImmutableInstrumentationConfigResponse(this.config, newValue);
}
/**
* This instance is equal to instances of {@code ImmutableInstrumentationConfigResponse} with equal attribute values.
* @return {@code true} if {@code this} is equal to {@code another} instance
*/
@Override
public boolean equals(@Nullable Object another) {
if (this == another) return true;
return another instanceof ImmutableInstrumentationConfigResponse
&& equalTo((ImmutableInstrumentationConfigResponse) another);
}
private boolean equalTo(ImmutableInstrumentationConfigResponse another) {
return config.equals(another.config)
&& methodSignatures.equals(another.methodSignatures);
}
/**
* Computes hash code from attributes: {@code config}, {@code methodSignatures}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + config.hashCode();
h = h * 17 + methodSignatures.hashCode();
return h;
}
/**
* Prints immutable value {@code InstrumentationConfigResponse...} with attribute values,
* excluding any non-generated and auxiliary attributes.
* @return string representation of value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("InstrumentationConfigResponse")
.add("config", config)
.add("methodSignatures", methodSignatures)
.toString();
}
/**
* Simple representation of this value type suitable Jackson binding
* @deprecated Do not use this type directly, it exists only for Jackson-binding infrastructure
*/
@Deprecated
static final class Json {
@JsonProperty
@Nullable InstrumentationConfigJsonService.InstrumentationConfigDto config;
@JsonProperty
@Nullable ImmutableList methodSignatures;
}
/**
* @param json JSON-bindable data structure
* @return immutable value type
* @deprecated Do not use this method directly, it exists only for Jackson-binding infrastructure
*/
@Deprecated
@JsonCreator
static ImmutableInstrumentationConfigResponse fromJson(Json json) {
ImmutableInstrumentationConfigResponse.Builder builder = ImmutableInstrumentationConfigResponse.builder();
if (json.config != null) {
builder.config(json.config);
}
if (json.methodSignatures != null) {
builder.addAllMethodSignatures(json.methodSignatures);
}
return builder.build();
}
/**
* Creates immutable copy of {@link InstrumentationConfigJsonService.InstrumentationConfigResponse}.
* Uses accessors to get values to initialize immutable instance.
* If an instance is already immutable, it is returned as is.
* @param instance instance to copy
* @return copied immutable InstrumentationConfigResponse instance
*/
static ImmutableInstrumentationConfigResponse copyOf(InstrumentationConfigJsonService.InstrumentationConfigResponse instance) {
if (instance instanceof ImmutableInstrumentationConfigResponse) {
return (ImmutableInstrumentationConfigResponse) instance;
}
return ImmutableInstrumentationConfigResponse.builder()
.copyFrom(instance)
.build();
}
/**
* Creates builder for {@link org.glowroot.ui.ImmutableInstrumentationConfigResponse ImmutableInstrumentationConfigResponse}.
* @return new ImmutableInstrumentationConfigResponse builder
*/
static ImmutableInstrumentationConfigResponse.Builder builder() {
return new ImmutableInstrumentationConfigResponse.Builder();
}
/**
* Builds instances of {@link org.glowroot.ui.ImmutableInstrumentationConfigResponse ImmutableInstrumentationConfigResponse}.
* Initialize attributes and then invoke {@link #build()} method to create
* immutable instance.
* {@code Builder} is not thread safe and generally should not be stored in field or collection,
* but used immediately to create instances.
*/
@NotThreadSafe
static final class Builder {
private static final long INIT_BIT_CONFIG = 0x1L;
private long initBits = 0x1;
private @Nullable InstrumentationConfigJsonService.InstrumentationConfigDto config;
private ImmutableList.Builder methodSignaturesBuilder = ImmutableList.builder();
private Builder() {}
/**
* Fill builder with attribute values from provided {@link InstrumentationConfigJsonService.InstrumentationConfigResponse} instance.
* Regular attribute values will be replaced with ones of an instance.
* Instance's absent optional values will not replace present values.
* Collection elements and entries will be added, not replaced.
* @param instance instance to copy values from
* @return {@code this} builder for chained invocation
*/
public final Builder copyFrom(InstrumentationConfigJsonService.InstrumentationConfigResponse instance) {
Preconditions.checkNotNull(instance);
config(instance.config());
addAllMethodSignatures(instance.methodSignatures());
return this;
}
/**
* Initializes value for {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#config() config}.
* @param config value for config
* @return {@code this} builder for chained invocation
*/
public final Builder config(InstrumentationConfigJsonService.InstrumentationConfigDto config) {
this.config = Preconditions.checkNotNull(config);
initBits &= ~INIT_BIT_CONFIG;
return this;
}
/**
* Adds one element to {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#methodSignatures() methodSignatures} list.
* @param element methodSignatures element
* @return {@code this} builder for chained invocation
*/
public final Builder addMethodSignatures(LiveWeavingService.MethodSignature element) {
methodSignaturesBuilder.add(element);
return this;
}
/**
* Adds elements to {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#methodSignatures() methodSignatures} list.
* @param elements array of methodSignatures elements
* @return {@code this} builder for chained invocation
*/
public final Builder addMethodSignatures(LiveWeavingService.MethodSignature... elements) {
methodSignaturesBuilder.add(elements);
return this;
}
/**
* Sets or replaces all elements for {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#methodSignatures() methodSignatures} list.
* @param elements iterable of methodSignatures elements
* @return {@code this} builder for chained invocation
*/
public final Builder methodSignatures(Iterable extends LiveWeavingService.MethodSignature> elements) {
methodSignaturesBuilder = ImmutableList.builder();
return addAllMethodSignatures(elements);
}
/**
* Adds elements to {@link InstrumentationConfigJsonService.InstrumentationConfigResponse#methodSignatures() methodSignatures} list.
* @param elements iterable of methodSignatures elements
* @return {@code this} builder for chained invocation
*/
public final Builder addAllMethodSignatures(Iterable extends LiveWeavingService.MethodSignature> elements) {
methodSignaturesBuilder.addAll(elements);
return this;
}
/**
* Builds new {@link org.glowroot.ui.ImmutableInstrumentationConfigResponse ImmutableInstrumentationConfigResponse}.
* @return immutable instance of InstrumentationConfigResponse
* @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing
*/
public ImmutableInstrumentationConfigResponse build()
throws IllegalStateException {
checkRequiredAttributes();
return new ImmutableInstrumentationConfigResponse(config, methodSignaturesBuilder.build());
}
private boolean configIsSet() {
return (initBits & INIT_BIT_CONFIG) == 0;
}
private void checkRequiredAttributes() throws IllegalStateException {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
}
private String formatRequiredAttributesMessage() {
List attributes = Lists.newArrayList();
if (!configIsSet()) attributes.add("config");
return "Cannot build InstrumentationConfigResponse, some of required attributes are not set " + attributes;
}
}
}