ae7d7472e94217191d0b8303ed4f5707a96c32ae
[netconf.git] / netconf / netconf-util / src / main / java / org / opendaylight / netconf / util / messages / FramingMechanism.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. 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.netconf.util.messages;
10
11 /**
12  * Known NETCONF framing mechanisms.
13  */
14 public enum FramingMechanism {
15     /**
16      * Chunked framing mechanism.
17      *
18      * @see <a href="http://tools.ietf.org/html/rfc6242#section-4.2">Chunked
19      *      framing mechanism</a>
20      */
21     CHUNK,
22     /**
23      * End-of-Message framing mechanism.
24      *
25      * @see <a
26      *      href="http://tools.ietf.org/html/rfc6242#section-4.3">End-of-message
27      *      framing mechanism</a>
28      */
29     EOM
30 }