summaryrefslogtreecommitdiffstats
path: root/persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java')
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java
deleted file mode 100644
index 28df8a7f5a3..00000000000
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.persistence.spi.result;
-
-/**
- * Result class for CreateIterator requests.
- */
-public class CreateIteratorResult extends Result {
- long iteratorId = 0;
-
- /**
- * Creates a result with an error.
- *
- * @param type The type of error
- * @param message A human-readable error message to further detail the error.
- */
- public CreateIteratorResult(Result.ErrorType type, String message) {
- super(type, message);
- }
-
- /**
- * Creates a successful result, containing a unique identifier for this iterator
- * (must be created and maintained by the provider).
- *
- * @param iteratorId The iterator ID to use for this iterator.
- */
- public CreateIteratorResult(long iteratorId) {
- this.iteratorId = iteratorId;
- }
-
- public long getIteratorId() {
- return iteratorId;
- }
-}