Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / AbstractOxmMetadataSerializer.java
index 0218beb8faea8b75b41d68699b9659b998099721..b3fedcc665575e1b45d57f7109aee91e483f047c 100644 (file)
@@ -1,27 +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.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.MetadataMatchEntry;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntries;\r
-\r
-/**\r
- * Parent for metadata based match entry serializers\r
- * @author michal.polkorab\r
- */\r
-public abstract class AbstractOxmMetadataSerializer extends AbstractOxmMatchEntrySerializer {\r
-\r
-    @Override\r
-    public void serialize(MatchEntries entry, ByteBuf outBuffer) {\r
-        super.serialize(entry, outBuffer);\r
-        outBuffer.writeBytes(entry.getAugmentation(MetadataMatchEntry.class).getMetadata());\r
-        writeMask(entry, outBuffer, getValueLength());\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.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.MetadataMatchEntry;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntries;
+
+/**
+ * Parent for metadata based match entry serializers
+ * @author michal.polkorab
+ */
+public abstract class AbstractOxmMetadataSerializer extends AbstractOxmMatchEntrySerializer {
+
+    @Override
+    public void serialize(MatchEntries entry, ByteBuf outBuffer) {
+        super.serialize(entry, outBuffer);
+        outBuffer.writeBytes(entry.getAugmentation(MetadataMatchEntry.class).getMetadata());
+        writeMask(entry, outBuffer, getValueLength());
+    }
+}