Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / AbstractOxmIpv4AddressSerializer.java
index 1d1907afecde2e252b65d068d4d43ca0735ecf9b..ea9d0a5c3bad82fbfa27410d87782c0fee0f94f7 100644 (file)
@@ -1,37 +1,27 @@
-/*\r
- * Copyright (c) 2013 Pantheon Technologies s.r.o. and others.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-package org.opendaylight.openflowjava.protocol.impl.serialization.match;\r
-\r
-import io.netty.buffer.ByteBuf;\r
-\r
-import org.opendaylight.openflowjava.util.ByteBufUtils;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.Ipv4AddressMatchEntry;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntries;\r
-\r
-/**\r
- * Parent for Ipv4 address based match entry serializers\r
- * @author michal.polkorab\r
- */\r
-public abstract class AbstractOxmIpv4AddressSerializer extends AbstractOxmMatchEntrySerializer {\r
-\r
-    @Override\r
-    public void serialize(final MatchEntries entry, final ByteBuf outBuffer) {\r
-        super.serialize(entry, outBuffer);\r
-        writeIpv4Address(entry, outBuffer);\r
-        writeMask(entry, outBuffer, getValueLength());\r
-    }\r
-\r
-    private static void writeIpv4Address(final MatchEntries entry, final ByteBuf out) {\r
-        Iterable<String> addressGroups = ByteBufUtils.DOT_SPLITTER\r
-                .split(entry.getAugmentation(Ipv4AddressMatchEntry.class).getIpv4Address().getValue());\r
-        for (String group : addressGroups) {\r
-            out.writeByte(Short.parseShort(group));\r
-        }\r
-    }\r
-\r
-}\r
+/*
+ * Copyright (c) 2013 Pantheon Technologies s.r.o. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.openflowjava.protocol.impl.serialization.match;
+
+import io.netty.buffer.ByteBuf;
+
+import org.opendaylight.openflowjava.util.ByteBufUtils;
+
+/**
+ * Parent for Ipv4 address based match entry serializers
+ * @author michal.polkorab
+ */
+public abstract class AbstractOxmIpv4AddressSerializer extends AbstractOxmMatchEntrySerializer {
+
+    protected static void writeIpv4Address(String address, final ByteBuf out) {
+        Iterable<String> addressGroups = ByteBufUtils.DOT_SPLITTER.split(address);
+        for (String group : addressGroups) {
+            out.writeByte(Short.parseShort(group));
+        }
+    }
+
+}