Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / statistics / CounterEventTypes.java
1 /*
2  * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.statistics;
10
11 /**
12  * Enumeration of events to be counted with StatisticsCounters
13  * @author madamjak
14  *
15  */
16 public enum CounterEventTypes {
17     /**
18      * enter message to OFJ and pass to downstream
19      */
20     DS_ENTERED_OFJAVA,
21     /**
22      * flow-mod is entered
23      */
24     DS_FLOW_MODS_ENTERED,
25     /**
26      * encode message successfully
27      */
28     DS_ENCODE_SUCCESS,
29     /**
30      * fail encode message
31      */
32     DS_ENCODE_FAIL,
33     /**
34      * flow-mod encoded and sent to downstream
35      */
36     DS_FLOW_MODS_SENT,
37     /**
38      * receive message and pass to upstream
39      */
40     US_RECEIVED_IN_OFJAVA,
41     /**
42      * decode message successfully
43      */
44     US_DECODE_SUCCESS,
45     /**
46      * fail decode message
47      */
48     US_DECODE_FAIL,
49     /**
50      * pass message to consumer (end of upstream)
51      */
52     US_MESSAGE_PASS;
53 }