Add methods that allows registering any serializer
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / extensibility / HeaderSerializer.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowjava.protocol.api.extensibility;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.yangtools.yang.binding.DataContainer;
12
13 /**
14  * Does only-header serialization (such as oxm_ids, action_ids, instruction_ids)
15  * @author michal.polkorab
16  * @param <T> input message type
17  */
18 public interface HeaderSerializer<T extends DataContainer> extends OFGeneralSerializer {
19
20     /**
21      * Serializes object headers (e.g. for Multipart message - Table Features)
22      * @param input object whose headers should be serialized
23      * @param outBuffer output buffer
24      */
25     void serializeHeader(T input, ByteBuf outBuffer);
26 }