Extensibility support (serialization part)
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / RoleRequestInputMessageFactory.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.impl.serialization.factories;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;
14 import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;
15 import org.opendaylight.openflowjava.protocol.impl.util.EncodeConstants;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.RoleRequestInput;
17
18 /**
19  * Translates RoleRequest messages
20  * @author michal.polkorab
21  * @author timotej.kubas
22  */
23 public class RoleRequestInputMessageFactory implements OFSerializer<RoleRequestInput> {
24
25     /** Code type of RoleRequest message */
26     private static final byte MESSAGE_TYPE = 24;
27     private static final byte PADDING_IN_ROLE_REQUEST_MESSAGE = 4;
28
29     @Override
30     public void serialize(RoleRequestInput message, ByteBuf outBuffer) {
31         ByteBufUtils.writeOFHeader(MESSAGE_TYPE, message, outBuffer, EncodeConstants.EMPTY_LENGTH);
32         outBuffer.writeInt(message.getRole().getIntValue());
33         ByteBufUtils.padBuffer(PADDING_IN_ROLE_REQUEST_MESSAGE, outBuffer);
34         outBuffer.writeLong(message.getGenerationId().longValue());
35         ByteBufUtils.updateOFHeaderLength(outBuffer);
36     }
37
38 }