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