Move FIXMEs out to 6.0.0 42/84842/5
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 1 Oct 2019 10:33:15 +0000 (12:33 +0200)
committerRobert Varga <nite@hq.sk>
Tue, 1 Oct 2019 12:19:36 +0000 (12:19 +0000)
This reschedules FIXMEs so they target next API-incompatible release.

Change-Id: Ica9ea81b2e362acf8dc411ae3d820f5b1139c7ee
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
binding/mdsal-binding-api/src/main/java/org/opendaylight/mdsal/binding/api/TransactionChainListener.java
common/mdsal-common-api/src/main/java/org/opendaylight/mdsal/common/api/LogicalDatastoreType.java
dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMRpcImplementation.java
dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMRpcService.java
dom/mdsal-dom-api/src/main/java/org/opendaylight/mdsal/dom/api/DOMTransactionChainListener.java
dom/mdsal-dom-spi/src/main/java/org/opendaylight/mdsal/dom/spi/shard/DOMDataTreeShardWriteTransaction.java

index 8e45bd3fb8e2be4332d22b111ec0e17d00a8bbfb..26c494590fa81d0f722d10b7b5ddc0b6ac5dd68e 100644 (file)
@@ -13,7 +13,7 @@ import org.eclipse.jdt.annotation.NonNull;
 /**
  * Listener for transaction chain events.
  */
-// FIXME: 5.0.0: remove this in favor of a TransactionChain destiny, available as a FluentFuture from TransactionChain
+// FIXME: 6.0.0: remove this in favor of a TransactionChain destiny, available as a FluentFuture from TransactionChain
 public interface TransactionChainListener extends EventListener {
     /**
      * Invoked if when a transaction in the chain fails. All transactions submitted after the failed transaction, in the
index 928b27d30b1813400f7ece6080ee14d4c41e155e..8e8c68440a515f25f153e8f7d0d9ed1836516751 100644 (file)
@@ -16,8 +16,8 @@ import org.opendaylight.yangtools.concepts.WritableObject;
 /**
  * The concept of a logical data store, similar to RFC8342.
  */
-// FIXME: 3.0.0: turn this into an interface so it can be externally-defined?
-// FIXME: 3.0.0: note that mount points can have different types and policies, which can potentially be mapped
+// FIXME: 6.0.0: turn this into an interface so it can be externally-defined?
+// FIXME: 6.0.0: note that mount points can have different types and policies, which can potentially be mapped
 public enum LogicalDatastoreType implements WritableObject {
     /**
      * Logical datastore representing operational state of the system and it's components. This datastore is used
index 99e3825cc8dd28239f40d2730b6827fb1015c399..a0d6b112895f7d996079d8528a523e7bb178fbe1 100644 (file)
@@ -27,7 +27,7 @@ public interface DOMRpcImplementation {
      *         or report a subclass of {@link DOMRpcException} reporting a transport
      *         error.
      */
-    // FIXME: 5.0.0: do not allow null input
+    // FIXME: 6.0.0: do not allow null input
     @NonNull ListenableFuture<DOMRpcResult> invokeRpc(@NonNull DOMRpcIdentifier rpc,
             @Nullable NormalizedNode<?, ?> input);
 
index 304595e3084cf8f43813096baf618754b9dab5ad..67e87fff370a37e3294dcc449a6f7f5198ffdfc6 100644 (file)
@@ -30,7 +30,7 @@ public interface DOMRpcService extends DOMService {
      * @return A {@link ListenableFuture} which will return either a result structure, or report a subclass
      *         of {@link DOMRpcException} reporting a transport error.
      */
-    // FIXME: 5.0.0: do not allow null input
+    // FIXME: 6.0.0: do not allow null input
     @NonNull ListenableFuture<DOMRpcResult> invokeRpc(@NonNull SchemaPath type, @Nullable NormalizedNode<?, ?> input);
 
     /**
index 1bda74adc9bb6bd94a19da288ec20dc39482f341..8b38930d7adbdce7984bc648f98c017a9cddcf87 100644 (file)
@@ -12,7 +12,7 @@ import java.util.EventListener;
 /**
  * Listener for transaction chain events.
  */
-// FIXME: 5.0.0: remove this in favor of a TransactionChain destiny, available as a FluentFuture from
+// FIXME: 6.0.0: remove this in favor of a TransactionChain destiny, available as a FluentFuture from
 //               DOMTransactionChain
 public interface DOMTransactionChainListener extends EventListener {
     /**
index f30f577e02c847558e634bb7e4dd45cecf65ec3f..fd3e24c6ca6b55c2e23e22faa010ee5b7ba3f2d3 100644 (file)
@@ -25,7 +25,7 @@ public interface DOMDataTreeShardWriteTransaction extends DOMDataTreeCursorProvi
      * @throws NullPointerException if prefix is null.
      */
     @Override
-    // FIXME: 5.0.0: reconcile @NonNull vs. super @Nullable
+    // FIXME: 6.0.0: reconcile @NonNull vs. super @Nullable
     @NonNull DOMDataTreeWriteCursor createCursor(@NonNull DOMDataTreeIdentifier prefix);
 
     /**