Outline code for Restconf Api Call Node
[ccsdk/sli/plugins.git] / restconf-client / provider / src / main / java / org / onap / ccsdk / sli / plugins / yangserializers / dfserializer / DataFormatSerializerContext.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - CCSDK
4  * ================================================================================
5  * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.ccsdk.sli.plugins.yangserializers.dfserializer;
22
23 import org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.PropertiesNodeSerializer;
24
25 import java.util.Map;
26
27 /**
28  * Abstraction of data format serializer context.
29  */
30 public class DataFormatSerializerContext {
31
32     /**
33      * Data format listener.
34      */
35     private Listener listener;
36
37     /**
38      * URI corresponding to the instance identifier.
39      */
40     private String uri;
41
42     /**
43      * Protocol annotation.
44      */
45     private Map<String, String> protocolAnnotation;
46
47     /**
48      * Properties node serializer.
49      */
50     private PropertiesNodeSerializer propNodeSerializer;
51
52     /**
53      * Creates an instance of data format serializer context.
54      *
55      * @param l data format listener
56      * @param u URI corresponding to instance identifier
57      * @param p protocol annotations
58      * @param s properties node serializer
59      */
60     public DataFormatSerializerContext(Listener l, String u,
61                                        Map<String, String> p,
62                                        PropertiesNodeSerializer s) {
63         listener = l;
64         uri = u;
65         protocolAnnotation = p;
66         propNodeSerializer = s;
67     }
68
69     /**
70      * Returns the data format listener.
71      *
72      * @return data format listener
73      */
74     public Listener listener() {
75         return listener;
76     }
77
78     /**
79      * Returns the URI.
80      *
81      * @return URI
82      */
83     public String uri() {
84         return uri;
85     }
86
87     /**
88      * Returns the protocol annotations.
89      *
90      * @return protocol annotations
91      */
92     public Map<String, String> getProtocolAnnotation() {
93         return protocolAnnotation;
94     }
95
96     /**
97      * Returns the properties node serializer.
98      *
99      * @return properties node serializer
100      */
101     public PropertiesNodeSerializer getPropNodeSerializer() {
102         return propNodeSerializer;
103     }
104 }