BUG-5280: introduce request/response Envelope
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / ExistsTransactionSuccess.java
index 5f081c77cd50686e3c3f48109654440cc5425d5a..33167921a38da89afed64e7d495cffe4bc7b6c77 100644 (file)
@@ -23,13 +23,8 @@ public final class ExistsTransactionSuccess extends TransactionSuccess<ExistsTra
     private static final long serialVersionUID = 1L;
     private final boolean exists;
 
-    public ExistsTransactionSuccess(final TransactionIdentifier target, final long sequence, final boolean exists) {
-        this(target, sequence, 0, exists);
-    }
-
-    ExistsTransactionSuccess(final TransactionIdentifier target, final long sequence, final long retry,
-            final boolean exists) {
-        super(target, sequence, retry);
+    public ExistsTransactionSuccess(final TransactionIdentifier target, final boolean exists) {
+        super(target);
         this.exists = exists;
     }