Push variuos changes
[music.git] / jar / src / main / java / org / onap / music / datastore / PreparedQueryObject.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
6  * ===================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  * 
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.datastore;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * 
30  * @author srupane
31  *
32  */
33 public class PreparedQueryObject {
34
35
36     private List<Object> values;
37     private StringBuilder query;
38
39
40
41     /**
42      * 
43      */
44     public PreparedQueryObject() {
45
46         this.values = new ArrayList<>();
47         this.query = new StringBuilder();
48     }
49
50     /**
51      * @return
52      */
53     public List<Object> getValues() {
54         return values;
55     }
56
57     /**
58      * @param o
59      */
60     public void addValue(Object o) {
61         this.values.add(o);
62     }
63
64     /**
65      * @param s
66      */
67     public void appendQueryString(String s) {
68         this.query.append(s);
69     }
70
71     /**
72      * @return
73      */
74     public String getQuery() {
75         return this.query.toString();
76     }
77
78
79
80 }