Bug 868: Remove AD-SAL components which were deprecated in Lithium
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / packet / PacketResult.java
diff --git a/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/packet/PacketResult.java b/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/packet/PacketResult.java
deleted file mode 100644 (file)
index 3583bd1..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-
-/*
- * Copyright (c) 2013 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
- */
-
-/**
- * @file   PacketResult.java
- *
- * @brief  Possible results for Data packet processing handler
- */
-package org.opendaylight.controller.sal.packet;
-
-/**
- * Possible results for Data packet processing handler
- *
- */
-@Deprecated
-public enum PacketResult {
-    /**
-     * Packet has been processed and noone in the chain after us is
-     * supposed to see it
-     *
-     */
-    CONSUME,
-    /**
-     * Packet has been processed and still further processing is
-     * possible
-     *
-     */
-    KEEP_PROCESSING,
-    /**
-     * Packet has been ignored so further handler is present in
-     * the sequence need to still look at it.
-     *
-     */
-    IGNORED
-}