Default experimenters moved to separate bundle + unit tests
[openflowjava.git] / openflow-protocol-ext / src / main / java / org / opendaylight / openflowjava / protocol / ext / serialization / OF13MultipartExperimenterSerializer.java
1 /*\r
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.openflowjava.protocol.ext.serialization;\r
10 \r
11 import io.netty.buffer.ByteBuf;\r
12 \r
13 import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;\r
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.multipart.request.multipart.request.body.multipart.request.experimenter._case.MultipartRequestExperimenter;\r
15 \r
16 /**\r
17  * @author michal.polkorab\r
18  *\r
19  */\r
20 public class OF13MultipartExperimenterSerializer implements OFSerializer<MultipartRequestExperimenter> {\r
21 \r
22     @Override\r
23     public void serialize(MultipartRequestExperimenter input, ByteBuf outBuffer) {\r
24         outBuffer.writeInt(input.getExperimenter().intValue());\r
25         outBuffer.writeInt(input.getExpType().intValue());\r
26         if (input.getData() != null) {\r
27             outBuffer.writeBytes(input.getData());\r
28         }\r
29     }\r
30 \r
31 }\r