Remove trailing whitespace
[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
13 import org.opendaylight.yangtools.yang.binding.DataObject;
14
15 /**
16  * Uniform interface for deserializing factories
17  * @author michal.polkorab
18  * @author timotej.kubas
19  * @param <E> message code type
20  */
21 public interface OFDeserializer<E extends DataObject> extends OFGeneralDeserializer {
22
23     /**
24      * Transforms byte message into POJO/DTO (of type E).
25      *
26      * @param message message as bytes in ByteBuf
27      * @return POJO/DTO
28      */
29     E deserialize(ByteBuf message);
30 }