Create common parent for extensions families
[bgpcep.git] / bgp / flowspec / src / main / java / org / opendaylight / protocol / bgp / flowspec / handlers / NumericTwoByteOperandParser.java
diff --git a/bgp/flowspec/src/main/java/org/opendaylight/protocol/bgp/flowspec/handlers/NumericTwoByteOperandParser.java b/bgp/flowspec/src/main/java/org/opendaylight/protocol/bgp/flowspec/handlers/NumericTwoByteOperandParser.java
deleted file mode 100644 (file)
index 020b636..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (c) 2015 Cisco Systems, Inc. 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.protocol.bgp.flowspec.handlers;
-
-import io.netty.buffer.ByteBuf;
-import io.netty.buffer.Unpooled;
-import java.util.Iterator;
-import java.util.List;
-
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.NumericOperand;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.NumericTwoByteValue;
-
-/**
- * Parser class for NumericTwoByteValues.
- */
-public final class NumericTwoByteOperandParser extends AbstractNumericByteOperandParser<NumericTwoByteValue, Integer> {
-
-    public static final NumericTwoByteOperandParser INSTANCE;
-
-    static {
-        INSTANCE = new NumericTwoByteOperandParser();
-    }
-
-    private NumericTwoByteOperandParser() {
-
-    }
-
-    /**
-     * Serializes Flowspec component type that has maximum of 2B sized value field and numeric operand.
-     *
-     * @param list of operands to be serialized
-     * @param nlriByteBuf where the operands will be serialized
-     */
-    @Override
-    public <T extends NumericTwoByteValue> void serialize(final List<T> list, final ByteBuf nlriByteBuf) {
-        for (final Iterator<T> it = list.iterator(); it.hasNext(); ) {
-            final T operand = it.next();
-            final ByteBuf protoBuf = Unpooled.buffer();
-            Util.writeShortest(operand.getValue(), protoBuf);
-            super.serialize(operand.getOp(), protoBuf.readableBytes(), !it.hasNext(), nlriByteBuf);
-            nlriByteBuf.writeBytes(protoBuf);
-        }
-    }
-
-    @Override
-    protected <T extends NumericTwoByteValue> Integer getValue(final T item) {
-        return item.getValue();
-    }
-
-    @Override
-    <T extends NumericTwoByteValue> NumericOperand getOp(final T item) {
-        return item.getOp();
-    }
-}