X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fsa%2Fsearchdbabstraction%2Fsearchapi%2FAbstractAggregation.java;h=46d6fa1567b8115e3ad34c6495751970dab741f5;hb=f637a36c9df966c341727910e30241b63cc49c06;hp=99c99e55aee324cafb955f60fbe5040df63bffcf;hpb=d6348739c632fb69c8833078effbb902adc7f702;p=aai%2Fsearch-data-service.git diff --git a/src/main/java/org/onap/aai/sa/searchdbabstraction/searchapi/AbstractAggregation.java b/src/main/java/org/onap/aai/sa/searchdbabstraction/searchapi/AbstractAggregation.java index 99c99e5..46d6fa1 100644 --- a/src/main/java/org/onap/aai/sa/searchdbabstraction/searchapi/AbstractAggregation.java +++ b/src/main/java/org/onap/aai/sa/searchdbabstraction/searchapi/AbstractAggregation.java @@ -1,4 +1,4 @@ -/** +/** * ============LICENSE_START======================================================= * org.onap.aai * ================================================================================ @@ -24,8 +24,8 @@ import com.fasterxml.jackson.annotation.JsonProperty; /** - * This is the common parent from which all aggregation types inherit. It defines - * the common fields that all aggregations must include. + * This is the common parent from which all aggregation types inherit. It defines the common fields that all + * aggregations must include. */ public abstract class AbstractAggregation { @@ -35,14 +35,13 @@ public abstract class AbstractAggregation { protected String field; /** - * Optionally allows the number of buckets for the aggregation to be - * specified. + * Optionally allows the number of buckets for the aggregation to be specified. */ protected Integer size; /** - * Optionally sets the minimum number of matches that must occur before - * a particular bucket is included in the aggregation result. + * Optionally sets the minimum number of matches that must occur before a particular bucket is included in the + * aggregation result. */ @JsonProperty("min-threshold") protected Integer minThreshold; @@ -74,5 +73,4 @@ public abstract class AbstractAggregation { public abstract String toElasticSearch(); - public abstract String toString(); }