Merge "SSH netty handler"
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / data / DataModification.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 package org.opendaylight.controller.md.sal.common.api.data;
9
10 import java.util.Map;
11 import java.util.Set;
12 import java.util.concurrent.Future;
13
14 import org.opendaylight.controller.md.sal.common.api.TransactionStatus;
15 // FIXME: After 0.6 Release of YANGTools refactor to use Path marker interface for arguments.
16 // import org.opendaylight.yangtools.concepts.Path;
17 import org.opendaylight.yangtools.yang.common.RpcResult;
18
19 public interface DataModification<P/* extends Path<P> */, D> extends DataReader<P, D> {
20
21     /**
22      * Returns transaction identifier
23      * 
24      * @return Transaction identifier
25      */
26     Object getIdentifier();
27
28     TransactionStatus getStatus();
29
30     void putRuntimeData(P path, D data);
31
32     void putConfigurationData(P path, D data);
33
34     void removeRuntimeData(P path);
35
36     void removeConfigurationData(P path);
37
38     public Map<P, D> getUpdatedConfigurationData();
39
40     public Map<P, D> getUpdatedOperationalData();
41
42     public Set<P> getRemovedConfigurationData();
43
44     public Set<P> getRemovedOperationalData();
45
46     /**
47      * Initiates a two-phase commit of modification.
48      * 
49      * <p>
50      * The successful commit changes the state of the system and may affect
51      * several components.
52      * 
53      * <p>
54      * The effects of successful commit of data are described in the
55      * specifications and YANG models describing the Provider components of
56      * controller. It is assumed that Consumer has an understanding of this
57      * changes.
58      * 
59      * 
60      * @see DataCommitHandler for further information how two-phase commit is
61      *      processed.
62      * @param store
63      *            Identifier of the store, where commit should occur.
64      * @return Result of the Commit, containing success information or list of
65      *         encountered errors, if commit was not successful. The Future
66      *         blocks until {@link TransactionStatus#COMMITED} or
67      *         {@link TransactionStatus#FAILED} is reached.
68      */
69     Future<RpcResult<TransactionStatus>> commit();
70
71 }