Merge "Bug 716: Errors on controller shutdown"
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / md / sal / dom / store / impl / tree / ModificationType.java
1 /*
2  * Copyright (c) 2014 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 package org.opendaylight.controller.md.sal.dom.store.impl.tree;
9
10 public enum ModificationType {
11
12     /**
13      *
14      * Node is unmodified
15      *
16      *
17      */
18     UNMODIFIED,
19     /**
20      *
21      * Child of tree node was modified
22      *
23      */
24     SUBTREE_MODIFIED,
25     /**
26      * Tree node was replaced with new value / subtree
27      *
28      */
29     WRITE,
30     /**
31      *
32      * Tree node is to be deleted.
33      *
34      */
35     DELETE,
36
37     /**
38      *
39      * Tree node is to be merged with existing one.
40      *
41      */
42     MERGE
43 }