changed the header license to new license
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / search / filters / entity / MatchFilterCriteriaEntity.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 MatchFilterCriteriaEntity {
28
29   private String criteriaName;
30   private String criteriaValue;
31
32   public MatchFilterCriteriaEntity(String criteriaName, String criteriaValue) {
33     super();
34     this.criteriaName = criteriaName;
35     this.criteriaValue = criteriaValue;
36   }
37
38   public String getCriteriaName() {
39     return criteriaName;
40   }
41
42   public void setCriteriaName(String criteriaName) {
43     this.criteriaName = criteriaName;
44   }
45
46   public String getCriteriaValue() {
47     return criteriaValue;
48   }
49
50   public void setCriteriaValue(String criteriaValue) {
51     this.criteriaValue = criteriaValue;
52   }
53
54   public JsonObject getJsonObject() {
55
56     /*
57      * Specify a null config for now, but if we want normalize all the builders, we can do it at one
58      * location, when we are ready.
59      */
60     JsonBuilderFactory factory = Json.createBuilderFactory(null);
61
62     return factory.createObjectBuilder()
63         .add("match", factory.createObjectBuilder().add(criteriaName, criteriaValue)).build();
64
65   }
66
67   @Override
68   public String toString() {
69     return "MatchFilterCriteriaEntity [criteriaName=" + criteriaName + ", criteriaValue="
70         + criteriaValue + "]";
71   }
72
73 }