
org.glowroot.agent.shaded.glowroot.ui.ImmutableTransactionSummaryRequest Maven / Gradle / Ivy
Show all versions of glowroot-agent-it-harness Show documentation
package org.glowroot.agent.shaded.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.Lists;
import org.glowroot.agent.shaded.google.common.primitives.Longs;
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.agent.shaded.glowroot.common.live.LiveAggregateRepository;
/**
* Immutable implementation of {@link TransactionJsonService.TransactionSummaryRequest}.
*
* Use the builder to create immutable instances:
* {@code ImmutableTransactionSummaryRequest.builder()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "TransactionJsonService.TransactionSummaryRequest"})
@Immutable
final class ImmutableTransactionSummaryRequest
implements TransactionJsonService.TransactionSummaryRequest {
private final String agentRollup;
private final String transactionType;
private final long from;
private final long to;
private final LiveAggregateRepository.SummarySortOrder sortOrder;
private final int limit;
private ImmutableTransactionSummaryRequest(
String agentRollup,
String transactionType,
long from,
long to,
LiveAggregateRepository.SummarySortOrder sortOrder,
int limit) {
this.agentRollup = agentRollup;
this.transactionType = transactionType;
this.from = from;
this.to = to;
this.sortOrder = sortOrder;
this.limit = limit;
}
/**
* @return The value of the {@code agentRollup} attribute
*/
@JsonProperty
@Override
public String agentRollup() {
return agentRollup;
}
/**
* @return The value of the {@code transactionType} attribute
*/
@JsonProperty
@Override
public String transactionType() {
return transactionType;
}
/**
* @return The value of the {@code from} attribute
*/
@JsonProperty
@Override
public long from() {
return from;
}
/**
* @return The value of the {@code to} attribute
*/
@JsonProperty
@Override
public long to() {
return to;
}
/**
* @return The value of the {@code sortOrder} attribute
*/
@JsonProperty
@Override
public LiveAggregateRepository.SummarySortOrder sortOrder() {
return sortOrder;
}
/**
* @return The value of the {@code limit} attribute
*/
@JsonProperty
@Override
public int limit() {
return limit;
}
/**
* Copy the current immutable object by setting a value for the {@link TransactionJsonService.TransactionSummaryRequest#agentRollup() agentRollup} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for agentRollup
* @return A modified copy of the {@code this} object
*/
public final ImmutableTransactionSummaryRequest withAgentRollup(String value) {
if (this.agentRollup.equals(value)) return this;
return new ImmutableTransactionSummaryRequest(
Preconditions.checkNotNull(value, "agentRollup"),
this.transactionType,
this.from,
this.to,
this.sortOrder,
this.limit);
}
/**
* Copy the current immutable object by setting a value for the {@link TransactionJsonService.TransactionSummaryRequest#transactionType() transactionType} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for transactionType
* @return A modified copy of the {@code this} object
*/
public final ImmutableTransactionSummaryRequest withTransactionType(String value) {
if (this.transactionType.equals(value)) return this;
return new ImmutableTransactionSummaryRequest(
this.agentRollup,
Preconditions.checkNotNull(value, "transactionType"),
this.from,
this.to,
this.sortOrder,
this.limit);
}
/**
* Copy the current immutable object by setting a value for the {@link TransactionJsonService.TransactionSummaryRequest#from() from} attribute.
* A value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value A new value for from
* @return A modified copy of the {@code this} object
*/
public final ImmutableTransactionSummaryRequest withFrom(long value) {
if (this.from == value) return this;
return new ImmutableTransactionSummaryRequest(this.agentRollup, this.transactionType, value, this.to, this.sortOrder, this.limit);
}
/**
* Copy the current immutable object by setting a value for the {@link TransactionJsonService.TransactionSummaryRequest#to() to} attribute.
* A value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value A new value for to
* @return A modified copy of the {@code this} object
*/
public final ImmutableTransactionSummaryRequest withTo(long value) {
if (this.to == value) return this;
return new ImmutableTransactionSummaryRequest(this.agentRollup, this.transactionType, this.from, value, this.sortOrder, this.limit);
}
/**
* Copy the current immutable object by setting a value for the {@link TransactionJsonService.TransactionSummaryRequest#sortOrder() sortOrder} attribute.
* A shallow reference equality check is used to prevent copying of the same value by returning {@code this}.
* @param value A new value for sortOrder
* @return A modified copy of the {@code this} object
*/
public final ImmutableTransactionSummaryRequest withSortOrder(LiveAggregateRepository.SummarySortOrder value) {
if (this.sortOrder == value) return this;
return new ImmutableTransactionSummaryRequest(
this.agentRollup,
this.transactionType,
this.from,
this.to,
Preconditions.checkNotNull(value, "sortOrder"),
this.limit);
}
/**
* Copy the current immutable object by setting a value for the {@link TransactionJsonService.TransactionSummaryRequest#limit() limit} attribute.
* A value equality check is used to prevent copying of the same value by returning {@code this}.
* @param value A new value for limit
* @return A modified copy of the {@code this} object
*/
public final ImmutableTransactionSummaryRequest withLimit(int value) {
if (this.limit == value) return this;
return new ImmutableTransactionSummaryRequest(this.agentRollup, this.transactionType, this.from, this.to, this.sortOrder, value);
}
/**
* This instance is equal to all instances of {@code ImmutableTransactionSummaryRequest} that have 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 ImmutableTransactionSummaryRequest
&& equalTo((ImmutableTransactionSummaryRequest) another);
}
private boolean equalTo(ImmutableTransactionSummaryRequest another) {
return agentRollup.equals(another.agentRollup)
&& transactionType.equals(another.transactionType)
&& from == another.from
&& to == another.to
&& sortOrder.equals(another.sortOrder)
&& limit == another.limit;
}
/**
* Computes a hash code from attributes: {@code agentRollup}, {@code transactionType}, {@code from}, {@code to}, {@code sortOrder}, {@code limit}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + agentRollup.hashCode();
h = h * 17 + transactionType.hashCode();
h = h * 17 + Longs.hashCode(from);
h = h * 17 + Longs.hashCode(to);
h = h * 17 + sortOrder.hashCode();
h = h * 17 + limit;
return h;
}
/**
* Prints the immutable value {@code TransactionSummaryRequest...} with all non-generated
* and non-auxiliary attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("TransactionSummaryRequest")
.add("agentRollup", agentRollup)
.add("transactionType", transactionType)
.add("from", from)
.add("to", to)
.add("sortOrder", sortOrder)
.add("limit", limit)
.toString();
}
/**
* 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
*/
@Deprecated
static final class Json implements TransactionJsonService.TransactionSummaryRequest {
@Nullable String agentRollup;
@Nullable String transactionType;
@Nullable Long from;
@Nullable Long to;
@Nullable LiveAggregateRepository.SummarySortOrder sortOrder;
@Nullable Integer limit;
@JsonProperty
public void setAgentRollup(String agentRollup) {
this.agentRollup = agentRollup;
}
@JsonProperty
public void setTransactionType(String transactionType) {
this.transactionType = transactionType;
}
@JsonProperty
public void setFrom(long from) {
this.from = from;
}
@JsonProperty
public void setTo(long to) {
this.to = to;
}
@JsonProperty
public void setSortOrder(LiveAggregateRepository.SummarySortOrder sortOrder) {
this.sortOrder = sortOrder;
}
@JsonProperty
public void setLimit(int limit) {
this.limit = limit;
}
@Override
public String agentRollup() { throw new UnsupportedOperationException(); }
@Override
public String transactionType() { throw new UnsupportedOperationException(); }
@Override
public long from() { throw new UnsupportedOperationException(); }
@Override
public long to() { throw new UnsupportedOperationException(); }
@Override
public LiveAggregateRepository.SummarySortOrder sortOrder() { throw new UnsupportedOperationException(); }
@Override
public int limit() { 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
static ImmutableTransactionSummaryRequest fromJson(Json json) {
ImmutableTransactionSummaryRequest.Builder builder = ImmutableTransactionSummaryRequest.builder();
if (json.agentRollup != null) {
builder.agentRollup(json.agentRollup);
}
if (json.transactionType != null) {
builder.transactionType(json.transactionType);
}
if (json.from != null) {
builder.from(json.from);
}
if (json.to != null) {
builder.to(json.to);
}
if (json.sortOrder != null) {
builder.sortOrder(json.sortOrder);
}
if (json.limit != null) {
builder.limit(json.limit);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link TransactionJsonService.TransactionSummaryRequest} value.
* Uses accessors to get values to initialize the new immutable instance.
* If an instance is already immutable, it is returned as is.
* @param instance The instance to copy
* @return A copied immutable TransactionSummaryRequest instance
*/
public static ImmutableTransactionSummaryRequest copyOf(TransactionJsonService.TransactionSummaryRequest instance) {
if (instance instanceof ImmutableTransactionSummaryRequest) {
return (ImmutableTransactionSummaryRequest) instance;
}
return ImmutableTransactionSummaryRequest.builder()
.copyFrom(instance)
.build();
}
/**
* Creates a builder for {@link ImmutableTransactionSummaryRequest ImmutableTransactionSummaryRequest}.
* @return A new ImmutableTransactionSummaryRequest builder
*/
public static ImmutableTransactionSummaryRequest.Builder builder() {
return new ImmutableTransactionSummaryRequest.Builder();
}
/**
* Builds instances of type {@link ImmutableTransactionSummaryRequest ImmutableTransactionSummaryRequest}.
* 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.
*/
@NotThreadSafe
static final class Builder {
private static final long INIT_BIT_AGENT_ROLLUP = 0x1L;
private static final long INIT_BIT_TRANSACTION_TYPE = 0x2L;
private static final long INIT_BIT_FROM = 0x4L;
private static final long INIT_BIT_TO = 0x8L;
private static final long INIT_BIT_SORT_ORDER = 0x10L;
private static final long INIT_BIT_LIMIT = 0x20L;
private long initBits = 0x3f;
private @Nullable String agentRollup;
private @Nullable String transactionType;
private long from;
private long to;
private @Nullable LiveAggregateRepository.SummarySortOrder sortOrder;
private int limit;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code TransactionSummaryRequest} 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 copyFrom(TransactionJsonService.TransactionSummaryRequest instance) {
Preconditions.checkNotNull(instance, "instance");
agentRollup(instance.agentRollup());
transactionType(instance.transactionType());
from(instance.from());
to(instance.to());
sortOrder(instance.sortOrder());
limit(instance.limit());
return this;
}
/**
* Initializes the value for the {@link TransactionJsonService.TransactionSummaryRequest#agentRollup() agentRollup} attribute.
* @param agentRollup The value for agentRollup
* @return {@code this} builder for use in a chained invocation
*/
public final Builder agentRollup(String agentRollup) {
this.agentRollup = Preconditions.checkNotNull(agentRollup, "agentRollup");
initBits &= ~INIT_BIT_AGENT_ROLLUP;
return this;
}
/**
* Initializes the value for the {@link TransactionJsonService.TransactionSummaryRequest#transactionType() transactionType} attribute.
* @param transactionType The value for transactionType
* @return {@code this} builder for use in a chained invocation
*/
public final Builder transactionType(String transactionType) {
this.transactionType = Preconditions.checkNotNull(transactionType, "transactionType");
initBits &= ~INIT_BIT_TRANSACTION_TYPE;
return this;
}
/**
* Initializes the value for the {@link TransactionJsonService.TransactionSummaryRequest#from() from} attribute.
* @param from The value for from
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(long from) {
this.from = from;
initBits &= ~INIT_BIT_FROM;
return this;
}
/**
* Initializes the value for the {@link TransactionJsonService.TransactionSummaryRequest#to() to} attribute.
* @param to The value for to
* @return {@code this} builder for use in a chained invocation
*/
public final Builder to(long to) {
this.to = to;
initBits &= ~INIT_BIT_TO;
return this;
}
/**
* Initializes the value for the {@link TransactionJsonService.TransactionSummaryRequest#sortOrder() sortOrder} attribute.
* @param sortOrder The value for sortOrder
* @return {@code this} builder for use in a chained invocation
*/
public final Builder sortOrder(LiveAggregateRepository.SummarySortOrder sortOrder) {
this.sortOrder = Preconditions.checkNotNull(sortOrder, "sortOrder");
initBits &= ~INIT_BIT_SORT_ORDER;
return this;
}
/**
* Initializes the value for the {@link TransactionJsonService.TransactionSummaryRequest#limit() limit} attribute.
* @param limit The value for limit
* @return {@code this} builder for use in a chained invocation
*/
public final Builder limit(int limit) {
this.limit = limit;
initBits &= ~INIT_BIT_LIMIT;
return this;
}
/**
* Builds a new {@link ImmutableTransactionSummaryRequest ImmutableTransactionSummaryRequest}.
* @return An immutable instance of TransactionSummaryRequest
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public ImmutableTransactionSummaryRequest build() {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
return new ImmutableTransactionSummaryRequest(agentRollup, transactionType, from, to, sortOrder, limit);
}
private String formatRequiredAttributesMessage() {
List attributes = Lists.newArrayList();
if ((initBits & INIT_BIT_AGENT_ROLLUP) != 0) attributes.add("agentRollup");
if ((initBits & INIT_BIT_TRANSACTION_TYPE) != 0) attributes.add("transactionType");
if ((initBits & INIT_BIT_FROM) != 0) attributes.add("from");
if ((initBits & INIT_BIT_TO) != 0) attributes.add("to");
if ((initBits & INIT_BIT_SORT_ORDER) != 0) attributes.add("sortOrder");
if ((initBits & INIT_BIT_LIMIT) != 0) attributes.add("limit");
return "Cannot build TransactionSummaryRequest, some of required attributes are not set " + attributes;
}
}
}