Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / GetAsyncRequestMessageFactory.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.impl.serialization.OFSerializer;
14 import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetAsyncInput;
16
17 /**
18  * Translates GetAsyncRequest messages
19  * @author timotej.kubas
20  * @author michal.polkorab
21  */
22 public class GetAsyncRequestMessageFactory implements OFSerializer<GetAsyncInput> {
23     private static final byte MESSAGE_TYPE = 26;
24     private static final int MESSAGE_LENGTH = 8;
25     private static GetAsyncRequestMessageFactory instance;
26     
27     private GetAsyncRequestMessageFactory() {
28         // singleton
29     }
30     
31     /**
32      * @return singleton factory
33      */
34     public static synchronized GetAsyncRequestMessageFactory getInstance() {
35         if (instance == null) {
36             instance = new GetAsyncRequestMessageFactory();
37         }
38         return instance;
39     }
40     
41     @Override
42     public void messageToBuffer(short version, ByteBuf out,
43             GetAsyncInput message) {
44         ByteBufUtils.writeOFHeader(instance, message, out);
45     }
46     
47     @Override
48     public int computeLength(GetAsyncInput message) {
49         return MESSAGE_LENGTH;
50     }
51     
52     @Override
53     public byte getMessageType() {
54         return MESSAGE_TYPE;
55     }
56
57 }