
org.glowroot.ui.ImmutableMBeanAttributeNamesRequest 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.Objects;
import org.glowroot.agent.shaded.google.common.base.Preconditions;
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;
/**
* Immutable implementation of {@link GaugeConfigJsonService.MBeanAttributeNamesRequest}.
*
* Use builder to create immutable instances:
* {@code ImmutableMBeanAttributeNamesRequest.builder()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "GaugeConfigJsonService.MBeanAttributeNamesRequest"})
@Immutable
final class ImmutableMBeanAttributeNamesRequest
implements GaugeConfigJsonService.MBeanAttributeNamesRequest {
private final String mbeanObjectName;
private final @Nullable String gaugeVersion;
private ImmutableMBeanAttributeNamesRequest(String mbeanObjectName, @Nullable String gaugeVersion) {
this.mbeanObjectName = mbeanObjectName;
this.gaugeVersion = gaugeVersion;
}
/**
* @return value of {@code mbeanObjectName} attribute
*/
@JsonProperty
@Override
public String mbeanObjectName() {
return mbeanObjectName;
}
/**
* @return value of {@code gaugeVersion} attribute
*/
@JsonProperty
@Override
public @Nullable String gaugeVersion() {
return gaugeVersion;
}
/**
* Copy current immutable object by setting value for {@link GaugeConfigJsonService.MBeanAttributeNamesRequest#mbeanObjectName() mbeanObjectName}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for mbeanObjectName
* @return modified copy of the {@code this} object
*/
public final ImmutableMBeanAttributeNamesRequest withMbeanObjectName(String value) {
if (this.mbeanObjectName == value) return this;
String newValue = Preconditions.checkNotNull(value);
return new ImmutableMBeanAttributeNamesRequest(newValue, this.gaugeVersion);
}
/**
* Copy current immutable object by setting value for {@link GaugeConfigJsonService.MBeanAttributeNamesRequest#gaugeVersion() gaugeVersion}.
* Shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param value new value for gaugeVersion, can be {@code null}
* @return modified copy of the {@code this} object
*/
public final ImmutableMBeanAttributeNamesRequest withGaugeVersion(@Nullable String value) {
if (this.gaugeVersion == value) return this;
@Nullable String newValue = value;
return new ImmutableMBeanAttributeNamesRequest(this.mbeanObjectName, newValue);
}
/**
* This instance is equal to instances of {@code ImmutableMBeanAttributeNamesRequest} 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 ImmutableMBeanAttributeNamesRequest
&& equalTo((ImmutableMBeanAttributeNamesRequest) another);
}
private boolean equalTo(ImmutableMBeanAttributeNamesRequest another) {
return mbeanObjectName.equals(another.mbeanObjectName)
&& Objects.equal(gaugeVersion, another.gaugeVersion);
}
/**
* Computes hash code from attributes: {@code mbeanObjectName}, {@code gaugeVersion}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + mbeanObjectName.hashCode();
h = h * 17 + Objects.hashCode(gaugeVersion);
return h;
}
/**
* Prints immutable value {@code MBeanAttributeNamesRequest...} with attribute values,
* excluding any non-generated and auxiliary attributes.
* @return string representation of value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("MBeanAttributeNamesRequest")
.add("mbeanObjectName", mbeanObjectName)
.add("gaugeVersion", gaugeVersion)
.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 String mbeanObjectName;
@JsonProperty
@Nullable String gaugeVersion;
}
/**
* @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 ImmutableMBeanAttributeNamesRequest fromJson(Json json) {
ImmutableMBeanAttributeNamesRequest.Builder builder = ImmutableMBeanAttributeNamesRequest.builder();
if (json.mbeanObjectName != null) {
builder.mbeanObjectName(json.mbeanObjectName);
}
if (json.gaugeVersion != null) {
builder.gaugeVersion(json.gaugeVersion);
}
return builder.build();
}
/**
* Creates immutable copy of {@link GaugeConfigJsonService.MBeanAttributeNamesRequest}.
* 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 MBeanAttributeNamesRequest instance
*/
static ImmutableMBeanAttributeNamesRequest copyOf(GaugeConfigJsonService.MBeanAttributeNamesRequest instance) {
if (instance instanceof ImmutableMBeanAttributeNamesRequest) {
return (ImmutableMBeanAttributeNamesRequest) instance;
}
return ImmutableMBeanAttributeNamesRequest.builder()
.copyFrom(instance)
.build();
}
/**
* Creates builder for {@link org.glowroot.ui.ImmutableMBeanAttributeNamesRequest ImmutableMBeanAttributeNamesRequest}.
* @return new ImmutableMBeanAttributeNamesRequest builder
*/
static ImmutableMBeanAttributeNamesRequest.Builder builder() {
return new ImmutableMBeanAttributeNamesRequest.Builder();
}
/**
* Builds instances of {@link org.glowroot.ui.ImmutableMBeanAttributeNamesRequest ImmutableMBeanAttributeNamesRequest}.
* 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_MBEAN_OBJECT_NAME = 0x1L;
private long initBits = 0x1;
private @Nullable String mbeanObjectName;
private @Nullable String gaugeVersion;
private Builder() {}
/**
* Fill builder with attribute values from provided {@link GaugeConfigJsonService.MBeanAttributeNamesRequest} instance.
* Regular attribute values will be replaced with ones of an instance.
* Instance's absent optional values will not replace present values.
* @param instance instance to copy values from
* @return {@code this} builder for chained invocation
*/
public final Builder copyFrom(GaugeConfigJsonService.MBeanAttributeNamesRequest instance) {
Preconditions.checkNotNull(instance);
mbeanObjectName(instance.mbeanObjectName());
@Nullable String gaugeVersionValue = instance.gaugeVersion();
if (gaugeVersionValue != null) {
gaugeVersion(gaugeVersionValue);
}
return this;
}
/**
* Initializes value for {@link GaugeConfigJsonService.MBeanAttributeNamesRequest#mbeanObjectName() mbeanObjectName}.
* @param mbeanObjectName value for mbeanObjectName
* @return {@code this} builder for chained invocation
*/
public final Builder mbeanObjectName(String mbeanObjectName) {
this.mbeanObjectName = Preconditions.checkNotNull(mbeanObjectName);
initBits &= ~INIT_BIT_MBEAN_OBJECT_NAME;
return this;
}
/**
* Initializes value for {@link GaugeConfigJsonService.MBeanAttributeNamesRequest#gaugeVersion() gaugeVersion}.
* @param gaugeVersion value for gaugeVersion, can be {@code null}
* @return {@code this} builder for chained invocation
*/
public final Builder gaugeVersion(@Nullable String gaugeVersion) {
this.gaugeVersion = gaugeVersion;
return this;
}
/**
* Builds new {@link org.glowroot.ui.ImmutableMBeanAttributeNamesRequest ImmutableMBeanAttributeNamesRequest}.
* @return immutable instance of MBeanAttributeNamesRequest
* @throws exception {@code java.lang.IllegalStateException} if any required attributes are missing
*/
public ImmutableMBeanAttributeNamesRequest build()
throws IllegalStateException {
checkRequiredAttributes();
return new ImmutableMBeanAttributeNamesRequest(mbeanObjectName, gaugeVersion);
}
private boolean mbeanObjectNameIsSet() {
return (initBits & INIT_BIT_MBEAN_OBJECT_NAME) == 0;
}
private void checkRequiredAttributes() throws IllegalStateException {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
}
private String formatRequiredAttributesMessage() {
List attributes = Lists.newArrayList();
if (!mbeanObjectNameIsSet()) attributes.add("mbeanObjectName");
return "Cannot build MBeanAttributeNamesRequest, some of required attributes are not set " + attributes;
}
}
}