blob: e33258bea6076d945aff80319017ba0c5bd1f99a [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.instructions.ExtensionTreatment;
21
22/**
23 * Interface for encode and decode extension treatment.
24 */
25public interface ExtensionTreatmentCodec extends HandlerBehaviour {
26
27 /**
28 * Encodes an extension treatment to an JSON object.
29 *
30 * @param extensionTreatment extension treatment
31 * @param context encoding context
32 * @return JSON object
33 */
34 default ObjectNode encode(ExtensionTreatment extensionTreatment, CodecContext context) {
35 return null;
36 }
37
38 /**
39 * Decodes an JSON object to an extension treatment.
40 *
41 * @param objectNode JSON object
42 * @param context decoding context
43 * @return extension treatment
44 */
45 default ExtensionTreatment decode(ObjectNode objectNode, CodecContext context) {
46 return null;
47 }
48}