Changed output directory for generated classes
[openflowjava.git] / openflow-protocol-ext / src / main / java / org / opendaylight / openflowjava / protocol / ext / serialization / OF13MeterBandExperimenterSerializer.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.openflowjava.protocol.ext.util.ExtConstants;\r
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.meter.band.header.meter.band.meter.band.experimenter._case.MeterBandExperimenter;\r
16 \r
17 /**\r
18  * @author michal.polkorab\r
19  *\r
20  */\r
21 public class OF13MeterBandExperimenterSerializer implements OFSerializer<MeterBandExperimenter> {\r
22 \r
23     @Override\r
24     public void serialize(MeterBandExperimenter meterBand, ByteBuf outBuffer) {\r
25         int startIndex = outBuffer.writerIndex();\r
26         outBuffer.writeShort(meterBand.getType().getIntValue());\r
27         int lengthIndex = outBuffer.writerIndex();\r
28         outBuffer.writeShort(ExtConstants.EMPTY_LENGTH);\r
29         outBuffer.writeInt(meterBand.getRate().intValue());\r
30         outBuffer.writeInt(meterBand.getBurstSize().intValue());\r
31         outBuffer.writeInt(meterBand.getExperimenter().intValue());\r
32         if (meterBand.getData() != null) {\r
33             outBuffer.writeBytes(meterBand.getData());\r
34         }\r
35         outBuffer.setShort(lengthIndex, outBuffer.writerIndex() - startIndex);\r
36         }\r
37 \r
38 }\r