Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / PipelineHandlers.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.protocol.impl.core;
10
11 /**
12  * Stores names of handlers used in pipeline.
13  * 
14  * @author michal.polkorab
15  */
16 public enum PipelineHandlers {
17
18     /**
19      * Detects switch idle state
20      */
21     IDLE_HANDLER,
22     /**
23      * Component for handling TLS frames
24      */
25     SSL_HANDLER,
26     /**
27      * Decodes incoming messages into message frames
28      */
29     OF_FRAME_DECODER,
30     /**
31      * Detects version of incoming OpenFlow Protocol message
32      */
33     OF_VERSION_DETECTOR,
34     /**
35      * Transforms OpenFlow Protocol byte messages into POJOs
36      */
37     OF_DECODER,
38     /**
39      * Transforms POJOs into OpenFlow Protocol byte messages
40      */
41     OF_ENCODER,
42     /**
43      * Delegates translated POJOs into MessageConsumer
44      */
45     DELEGATING_INBOUND_HANDLER,
46     /**
47      * Performs efficient flushing
48      */
49     CHANNEL_OUTBOUNF_QUEUE,
50     /**
51      * Decodes incoming messages into message frames
52      * and filters them based on version supported
53      */
54     OF_DATAGRAMPACKET_HANDLER,
55     /**
56      * Transforms OpenFlow Protocol datagram messages into POJOs
57      */
58     OF_DATAGRAMPACKET_DECODER,
59     /**
60      * Transforms POJOs into OpenFlow Protocol datagrams
61      */
62     OF_DATAGRAMPACKET_ENCODER
63 }