Merge "Fix improper cleanup of operational data in sal-netconf-connector's disconnect"
[controller.git] / opendaylight / netconf / netconf-util / src / main / java / org / opendaylight / controller / 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.controller.netconf.util.messages;
10
11 /**
12  * Known NETCONF framing mechanisms.
13  */
14 public enum FramingMechanism {
15     /**
16      * @see <a href="http://tools.ietf.org/html/rfc6242#section-4.2">Chunked
17      *      framing mechanism</a>
18      */
19     CHUNK,
20     /**
21      * @see <a
22      *      href="http://tools.ietf.org/html/rfc6242#section-4.3">End-of-message
23      *      framing mechanism</a>
24      */
25     EOM
26 }