Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / AbstractOxmIpv4AddressSerializer.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
12 import org.opendaylight.openflowjava.util.ByteBufUtils;
13
14 /**
15  * Parent for Ipv4 address based match entry serializers
16  * @author michal.polkorab
17  */
18 public abstract class AbstractOxmIpv4AddressSerializer extends AbstractOxmMatchEntrySerializer {
19
20     protected static void writeIpv4Address(String address, final ByteBuf out) {
21         Iterable<String> addressGroups = ByteBufUtils.DOT_SPLITTER.split(address);
22         for (String group : addressGroups) {
23             out.writeByte(Short.parseShort(group));
24         }
25     }
26
27 }