2230f2673741779f5f11be35b8fc9ccc357d6ada
[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
24 package org.onap.music.datastore.jsonobjects;
25
26 import java.io.ByteArrayOutputStream;
27 import java.io.IOException;
28 import java.io.ObjectOutput;
29 import java.io.ObjectOutputStream;
30 import java.io.Serializable;
31 import java.util.Map;
32 import org.onap.music.authentication.AuthUtil;
33 import org.onap.music.eelf.logging.EELFLoggerDelegate;
34 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
35
36 @JsonIgnoreProperties(ignoreUnknown = true)
37 public class JsonSelect implements Serializable {
38     private Map<String, String> consistencyInfo;
39     private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(JsonSelect.class);
40
41
42
43     public Map<String, String> getConsistencyInfo() {
44         return consistencyInfo;
45     }
46
47     public void setConsistencyInfo(Map<String, String> consistencyInfo) {
48         this.consistencyInfo = consistencyInfo;
49     }
50
51     public byte[] serialize() {
52         ByteArrayOutputStream bos = new ByteArrayOutputStream();
53         ObjectOutput out = null;
54         try {
55             out = new ObjectOutputStream(bos);
56             out.writeObject(this);
57         } catch (IOException e) {
58             logger.error("IOException occured {}",e.getMessage());
59         }
60         return bos.toByteArray();
61     }
62
63 }