Add missing distributionManagement section to poms
[aai/search-data-service.git] / search-data-service / src / main / java / org / onap / aai / sa / searchdbabstraction / searchapi / AbstractAggregation.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sa.searchdbabstraction.searchapi;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 /**
26  * This is the common parent from which all aggregation types inherit. It defines the common fields that all
27  * aggregations must include.
28  */
29 public abstract class AbstractAggregation {
30
31     /**
32      * The name of the field to apply the aggregation against.
33      */
34     protected String field;
35
36     /**
37      * Optionally allows the number of buckets for the aggregation to be specified.
38      */
39     protected Integer size;
40
41     /**
42      * Optionally sets the minimum number of matches that must occur before a particular bucket is included in the
43      * aggregation result.
44      */
45     @JsonProperty("min-threshold")
46     protected Integer minThreshold;
47
48
49     public String getField() {
50         return field;
51     }
52
53     public void setField(String field) {
54         this.field = field;
55     }
56
57     public Integer getSize() {
58         return size;
59     }
60
61     public void setSize(Integer size) {
62         this.size = size;
63     }
64
65     public Integer getMinThreshold() {
66         return minThreshold;
67     }
68
69     public void setMinThreshold(Integer minThreshold) {
70         this.minThreshold = minThreshold;
71     }
72
73     public abstract String toElasticSearch();
74
75 }