Initial code Import.
[music.git] / src / main / java / org / onap / music / datastore / jsonobjects / JsonSelect.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.jsonobjects;
23
24 import java.io.ByteArrayOutputStream;
25 import java.io.IOException;
26 import java.io.ObjectOutput;
27 import java.io.ObjectOutputStream;
28 import java.io.Serializable;
29 import java.util.Map;
30
31 public class JsonSelect implements Serializable {
32     private Map<String, String> consistencyInfo;
33
34
35     public Map<String, String> getConsistencyInfo() {
36         return consistencyInfo;
37     }
38
39     public void setConsistencyInfo(Map<String, String> consistencyInfo) {
40         this.consistencyInfo = consistencyInfo;
41     }
42
43     public byte[] serialize() {
44         ByteArrayOutputStream bos = new ByteArrayOutputStream();
45         ObjectOutput out = null;
46         try {
47             out = new ObjectOutputStream(bos);
48             out.writeObject(this);
49         } catch (IOException e) {
50             // TODO Auto-generated catch block
51             e.printStackTrace();
52         }
53         return bos.toByteArray();
54     }
55
56 }