Initial code Import.
[music.git] / 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 package org.onap.music.datastore;
23
24 import java.util.ArrayList;
25 import java.util.List;
26
27 /**
28  * 
29  * @author srupane
30  *
31  */
32 public class PreparedQueryObject {
33
34
35     private List<Object> values;
36     private StringBuilder query;
37
38
39
40     /**
41      * 
42      */
43     public PreparedQueryObject() {
44
45         this.values = new ArrayList<>();
46         this.query = new StringBuilder();
47     }
48
49     /**
50      * @return
51      */
52     public List<Object> getValues() {
53         return values;
54     }
55
56     /**
57      * @param o
58      */
59     public void addValue(Object o) {
60         this.values.add(o);
61     }
62
63     /**
64      * @param s
65      */
66     public void appendQueryString(String s) {
67         this.query.append(s);
68     }
69
70     /**
71      * @return
72      */
73     public String getQuery() {
74         return this.query.toString();
75     }
76
77
78
79 }