blob: fc512161f3f2a8659033fe29d300d9c14d9dccef [file] [log] [blame]
Jian Lidab72562016-04-12 14:10:32 -07001/*
2 * Copyright 2016-present 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.onosproject.codec;
17
18import com.fasterxml.jackson.databind.node.ObjectNode;
19import org.onosproject.net.driver.HandlerBehaviour;
20import org.onosproject.net.flow.criteria.ExtensionSelector;
21
22/**
23 * Interface for encode and decode extension selector.
24 */
25public interface ExtensionSelectorCodec extends HandlerBehaviour {
26
27 /**
28 * Encodes an extension selector to an JSON object.
29 *
30 * @param extensionSelector extension selector
31 * @param context encoding context
32 * @return JSON object
33 */
34 default ObjectNode encode(ExtensionSelector extensionSelector, CodecContext context) {
35 return null;
36 }
37
38 /**
39 * Decodes an JSON object to an extension selector.
40 *
41 * @param objectNode JSON object
42 * @param context decoding context
43 * @return extension selector
44 */
45 default ExtensionSelector decode(ObjectNode objectNode, CodecContext context) {
46 return null;
47 }
48}