blob: 6c8493e9452db8e0efc7f8170b450dafc10e51e8 [file] [log] [blame]
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -08001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onlab.onos.codec;
17
18import com.fasterxml.jackson.databind.ObjectMapper;
19
20/**
21 * Context for codecs to use while encoding/decoding.
22 */
23public interface CodecContext {
24
25 /**
26 * Returns the JSON object mapper.
27 *
28 * @return object mapper
29 */
30 ObjectMapper mapper();
31
32 /**
33 * Returns the JSON codec for the specified entity class.
34 *
35 * @param entityClass entity class
36 * @param <T> entity type
37 * @return JSON codec; null if no codec available for the class
38 */
39 <T> JsonCodec<T> codec(Class<T> entityClass);
40
41 /**
42 * Returns reference to the specified service implementation.
43 *
44 * @param serviceClass service class
45 * @param <T> service type
46 * @return JSON codec; null if no codec available for the class
47 */
48 <T> T get(Class<T> serviceClass);
49
50}