5b0cc2fb7844221739f9666ecddf68afc70a1240
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / search / filters / entity / AggregationEntity.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.sparky.search.filters.entity;
22
23 import javax.json.Json;
24 import javax.json.JsonBuilderFactory;
25 import javax.json.JsonObject;
26
27 public class AggregationEntity {
28
29   private String aggregationName;
30   private String aggregationFieldName;
31   private int size;
32
33   public AggregationEntity(String aggName, String fieldName, int size) {
34
35     this.aggregationName = aggName;
36     this.aggregationFieldName = fieldName;
37     this.size = size;
38   }
39
40   public String getAggregationName() {
41     return aggregationName;
42   }
43
44   public void setAggregationName(String aggregationName) {
45     this.aggregationName = aggregationName;
46   }
47
48   public String getAggregationFieldName() {
49     return aggregationFieldName;
50   }
51
52   public void setAggregationFieldName(String aggregationFieldName) {
53     this.aggregationFieldName = aggregationFieldName;
54   }
55
56   public int getSize() {
57     return size;
58   }
59
60   public void setSize(int size) {
61     this.size = size;
62   }
63
64   public JsonObject getJsonObject() {
65
66     JsonBuilderFactory factory = Json.createBuilderFactory(null);
67
68     return factory.createObjectBuilder()
69         .add("terms", factory.createObjectBuilder()
70         .add("field", aggregationFieldName)
71         .add("size", size))
72         .build();
73   }
74
75
76 }