Add methods for modifying deserializer mapping
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / extensibility / OFDeserializer.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
9 package org.opendaylight.openflowjava.protocol.api.extensibility;
10
11 import io.netty.buffer.ByteBuf;
12 import org.opendaylight.yangtools.yang.binding.DataContainer;
13
14 /**
15  * Uniform interface for deserializing factories
16  * @author michal.polkorab
17  * @author timotej.kubas
18  * @param <E> message code type
19  */
20 public interface OFDeserializer<E extends DataContainer> extends OFGeneralDeserializer {
21
22     /**
23      * Transforms byte message into POJO/DTO (of type E).
24      *
25      * @param message message as bytes in ByteBuf
26      * @return POJO/DTO
27      */
28     E deserialize(ByteBuf message);
29 }