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