Merge "jsonSelect.java: Fixed sonar issue"
[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 import org.apache.log4j.Logger;
31 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
32
33 @JsonIgnoreProperties(ignoreUnknown = true)
34 public class JsonSelect implements Serializable {
35     private Map<String, String> consistencyInfo;
36     static Logger logger = Logger.getLogger(JsonSelect.class.getName());
37
38     public Map<String, String> getConsistencyInfo() {
39         return consistencyInfo;
40     }
41
42     public void setConsistencyInfo(Map<String, String> consistencyInfo) {
43         this.consistencyInfo = consistencyInfo;
44     }
45
46     public byte[] serialize() {
47         ByteArrayOutputStream bos = new ByteArrayOutputStream();
48         ObjectOutput out = null;
49         try {
50             out = new ObjectOutputStream(bos);
51             out.writeObject(this);
52         } catch (IOException e) {
53             // TODO Auto-generated catch block
54                 logger.error("Error", e);
55             e.printStackTrace();
56         }
57         return bos.toByteArray();
58     }
59
60 }