Mark AD-SAL interfaces as deprecated
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / packet / PacketResult.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 /**
11  * @file   PacketResult.java
12  *
13  * @brief  Possible results for Data packet processing handler
14  */
15 package org.opendaylight.controller.sal.packet;
16
17 /**
18  * Possible results for Data packet processing handler
19  *
20  */
21 @Deprecated
22 public enum PacketResult {
23     /**
24      * Packet has been processed and noone in the chain after us is
25      * supposed to see it
26      *
27      */
28     CONSUME,
29     /**
30      * Packet has been processed and still further processing is
31      * possible
32      *
33      */
34     KEEP_PROCESSING,
35     /**
36      * Packet has been ignored so further handler is present in
37      * the sequence need to still look at it.
38      *
39      */
40     IGNORED
41 }