Bump upstreams
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / AbstractOxmMacAddressSerializer.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 package org.opendaylight.openflowjava.protocol.impl.serialization.match;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.IetfYangUtil;
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
13
14 /**
15  * Parent for MAC address based match entry serializers.
16  *
17  * @author michal.polkorab
18  */
19 public abstract class AbstractOxmMacAddressSerializer extends AbstractOxmMatchEntrySerializer {
20
21     protected void writeMacAddress(final MacAddress address, final ByteBuf outBuffer) {
22         outBuffer.writeBytes(IetfYangUtil.macAddressBytes(address)); // 48 b + mask [OF 1.3.2 spec]
23     }
24 }