Deprecate ManagedNewTransactionRunner et al.
[genius.git] / mdsalutil / mdsalutil-api / src / main / java / org / opendaylight / genius / infra / TypedWriteTransaction.java
1 /*
2  * Copyright © 2018 Red Hat, Inc. and others.
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.genius.infra;
9
10 import org.opendaylight.mdsal.binding.api.Transaction;
11 import org.opendaylight.mdsal.binding.api.WriteTransaction;
12 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
13 import org.opendaylight.yangtools.yang.binding.DataObject;
14 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
15
16 /**
17  * Write transaction which is specific to a single logical datastore (configuration or operational). Designed for use
18  * with {@link ManagedNewTransactionRunner} (it doesn’t support explicit cancel or commit operations).
19  *
20  * @param <D> The logical datastore handled by the transaction.
21  * @see WriteTransaction
22  * @deprecated Use {@link org.opendaylight.mdsal.binding.util.TypedWriteTransaction} instead.
23  */
24 @Deprecated(forRemoval = true)
25 public interface TypedWriteTransaction<D extends Datastore> extends
26         Transaction {
27     /**
28      * Writes an object to the given path.
29      *
30      * @see WriteTransaction#put(LogicalDatastoreType, InstanceIdentifier, DataObject) )
31      *
32      * @param path The path to write to.
33      * @param data The object to write.
34      * @param <T> The type of the provided object.
35      */
36     <T extends DataObject> void put(InstanceIdentifier<T> path, T data);
37
38     /**
39      * Writes an object to the given path, creating missing parents if requested.
40      *
41      * @see WriteTransaction#put(LogicalDatastoreType, InstanceIdentifier, DataObject)
42      *
43      * @param path The path to write to.
44      * @param data The object to write.
45      * @param <T> The type of the provided object.
46      */
47     <T extends DataObject> void mergeParentStructurePut(InstanceIdentifier<T> path, T data);
48
49     /**
50      * Merges an object with the data already present at the given path.
51      *
52      * @see WriteTransaction#merge(LogicalDatastoreType, InstanceIdentifier, DataObject)
53      *
54      * @param path The path to write to.
55      * @param data The object to merge.
56      * @param <T> The type of the provided object.
57      */
58     <T extends DataObject> void merge(InstanceIdentifier<T> path, T data);
59
60     /**
61      * Merges an object with the data already present at the given path, creating missing parents if requested.
62      *
63      * @see WriteTransaction#merge(LogicalDatastoreType, InstanceIdentifier, DataObject)
64      *
65      * @param path The path to write to.
66      * @param data The object to merge.
67      * @param <T> The type of the provided object.
68      */
69     <T extends DataObject> void mergeParentStructureMerge(InstanceIdentifier<T> path, T data);
70
71     /**
72      * Deletes the object present at the given path.
73      *
74      * @see WriteTransaction#delete(LogicalDatastoreType, InstanceIdentifier)
75      *
76      * @param path The path to delete.
77      */
78     void delete(InstanceIdentifier<?> path);
79 }