Convert Sparky to Spring-Boot
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / search / filters / entity / MatchFilterCriteriaEntity.java
1 /**
2  * ============LICENSE_START===================================================
3  * SPARKY (AAI UI service)
4  * ============================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=====================================================
21  *
22  * ECOMP and OpenECOMP are trademarks
23  * and service marks of AT&T Intellectual Property.
24  */
25 package org.onap.aai.sparky.search.filters.entity;
26
27 import javax.json.Json;
28 import javax.json.JsonBuilderFactory;
29 import javax.json.JsonObject;
30
31 public class MatchFilterCriteriaEntity {
32
33   private String criteriaName;
34   private String criteriaValue;
35
36   public MatchFilterCriteriaEntity(String criteriaName, String criteriaValue) {
37     super();
38     this.criteriaName = criteriaName;
39     this.criteriaValue = criteriaValue;
40   }
41
42   public String getCriteriaName() {
43     return criteriaName;
44   }
45
46   public void setCriteriaName(String criteriaName) {
47     this.criteriaName = criteriaName;
48   }
49
50   public String getCriteriaValue() {
51     return criteriaValue;
52   }
53
54   public void setCriteriaValue(String criteriaValue) {
55     this.criteriaValue = criteriaValue;
56   }
57
58   public JsonObject getJsonObject() {
59
60     /*
61      * Specify a null config for now, but if we want normalize all the builders, we can do it at one
62      * location, when we are ready.
63      */
64     JsonBuilderFactory factory = Json.createBuilderFactory(null);
65
66     return factory.createObjectBuilder()
67         .add("match", factory.createObjectBuilder().add(criteriaName, criteriaValue)).build();
68
69   }
70
71   @Override
72   public String toString() {
73     return "MatchFilterCriteriaEntity [criteriaName=" + criteriaName + ", criteriaValue="
74         + criteriaValue + "]";
75   }
76
77 }