Merge "fixed sonar issue in MusicPolicyVoilationException"
[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  *  Modifications Copyright (C) 2018 IBM.
7  * ===================================================================
8  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  you may not use this file except in compliance with the License.
10  *  You may obtain a copy of the License at
11  * 
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  *  Unless required by applicable law or agreed to in writing, software
15  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  See the License for the specific language governing permissions and
18  *  limitations under the License.
19  * 
20  * ============LICENSE_END=============================================
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 import org.apache.log4j.Logger;
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     static Logger logger = Logger.getLogger(JsonSelect.class.getName());
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                 logger.error("Error", e);
56         }
57         return bos.toByteArray();
58     }
59
60 }