summaryrefslogtreecommitdiffstats
path: root/persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java')
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java
deleted file mode 100644
index 97bccdb21b7..00000000000
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java
+++ /dev/null
@@ -1,39 +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;
-
-import com.yahoo.persistence.spi.BucketInfo;
-
-/**
- * Result class for update operations.
- */
-public class UpdateResult extends Result {
- long existingTimestamp = 0;
-
- /**
- * Constructor to use when an error occurred during the update
- *
- * @param error The type of error that occurred
- * @param message A human readable message further detailing the error.
- */
- public UpdateResult(ErrorType error, String message) {
- super(error, message);
- }
-
- /**
- * Constructor to use when the document to update was not found.
- */
- public UpdateResult() {
- super();
- }
-
- /**
- * Constructor to use when the update was successful.
- *
- * @param existingTimestamp The timestamp of the document that was updated.
- */
- public UpdateResult(long existingTimestamp) {
- this.existingTimestamp = existingTimestamp;
- }
-
- public long getExistingTimestamp() { return existingTimestamp; }
-}