summaryrefslogtreecommitdiffstats
path: root/persistence/src/main/java/com/yahoo/persistence
diff options
context:
space:
mode:
Diffstat (limited to 'persistence/src/main/java/com/yahoo/persistence')
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/rpc/BucketProviderMethod.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderHandler.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderMethod.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/rpc/RPCHandler.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/rpc/package-info.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/AbstractPersistenceProvider.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/Bucket.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/BucketInfo.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/ClusterState.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/ClusterStateImpl.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/DocEntry.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/PartitionState.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/PersistenceProvider.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/Selection.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/conformance/ConformanceTest.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/conformance/TestDocMan.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/conformance/package-info.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/package-info.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/BucketIdListResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/BucketInfoResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/GetResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/IterateResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/PartitionStateListResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/RemoveResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/Result.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java2
-rw-r--r--persistence/src/main/java/com/yahoo/persistence/spi/result/package-info.java2
29 files changed, 29 insertions, 29 deletions
diff --git a/persistence/src/main/java/com/yahoo/persistence/rpc/BucketProviderMethod.java b/persistence/src/main/java/com/yahoo/persistence/rpc/BucketProviderMethod.java
index a5a13d7bf0e..3be746d6063 100644
--- a/persistence/src/main/java/com/yahoo/persistence/rpc/BucketProviderMethod.java
+++ b/persistence/src/main/java/com/yahoo/persistence/rpc/BucketProviderMethod.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.rpc;
/**
diff --git a/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderHandler.java b/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderHandler.java
index e4a5dc3067f..7f9fb17ce88 100644
--- a/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderHandler.java
+++ b/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderHandler.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.rpc;
import com.yahoo.document.*;
diff --git a/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderMethod.java b/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderMethod.java
index da0bf786a29..b8510e015ba 100644
--- a/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderMethod.java
+++ b/persistence/src/main/java/com/yahoo/persistence/rpc/PersistenceProviderMethod.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.rpc;
import com.yahoo.jrt.*;
diff --git a/persistence/src/main/java/com/yahoo/persistence/rpc/RPCHandler.java b/persistence/src/main/java/com/yahoo/persistence/rpc/RPCHandler.java
index b28579cd28e..e7fb8d3aa30 100644
--- a/persistence/src/main/java/com/yahoo/persistence/rpc/RPCHandler.java
+++ b/persistence/src/main/java/com/yahoo/persistence/rpc/RPCHandler.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.rpc;
import com.yahoo.jrt.*;
diff --git a/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java b/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java
index 00639601c4d..e438628b43d 100644
--- a/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java
+++ b/persistence/src/main/java/com/yahoo/persistence/rpc/TimestampedProviderMethod.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.rpc;
/**
diff --git a/persistence/src/main/java/com/yahoo/persistence/rpc/package-info.java b/persistence/src/main/java/com/yahoo/persistence/rpc/package-info.java
index 2d0b9fea6b7..6d3fc4781a3 100644
--- a/persistence/src/main/java/com/yahoo/persistence/rpc/package-info.java
+++ b/persistence/src/main/java/com/yahoo/persistence/rpc/package-info.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
@ExportPackage
@PublicApi
package com.yahoo.persistence.rpc;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/AbstractPersistenceProvider.java b/persistence/src/main/java/com/yahoo/persistence/spi/AbstractPersistenceProvider.java
index bd7c2bd7823..89c98a873b0 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/AbstractPersistenceProvider.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/AbstractPersistenceProvider.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
import com.yahoo.document.*;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/Bucket.java b/persistence/src/main/java/com/yahoo/persistence/spi/Bucket.java
index ed443fa9100..0c9a8d16476 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/Bucket.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/Bucket.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
import com.yahoo.document.BucketId;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/BucketInfo.java b/persistence/src/main/java/com/yahoo/persistence/spi/BucketInfo.java
index 2105ade6206..78d66f7d701 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/BucketInfo.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/BucketInfo.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
/**
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/ClusterState.java b/persistence/src/main/java/com/yahoo/persistence/spi/ClusterState.java
index dbf7a90f49c..1199c9bb255 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/ClusterState.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/ClusterState.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
/**
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/ClusterStateImpl.java b/persistence/src/main/java/com/yahoo/persistence/spi/ClusterStateImpl.java
index 5d20f14dcc8..da1711f6587 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/ClusterStateImpl.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/ClusterStateImpl.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
import com.yahoo.vdslib.distribution.Distribution;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/DocEntry.java b/persistence/src/main/java/com/yahoo/persistence/spi/DocEntry.java
index 2217bbcb0f7..cf7ef2cc50c 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/DocEntry.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/DocEntry.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
import com.yahoo.document.Document;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/PartitionState.java b/persistence/src/main/java/com/yahoo/persistence/spi/PartitionState.java
index b998989fce7..10d3b2e73e4 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/PartitionState.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/PartitionState.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
/**
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/PersistenceProvider.java b/persistence/src/main/java/com/yahoo/persistence/spi/PersistenceProvider.java
index b33e631aadb..68e9f1b5e24 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/PersistenceProvider.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/PersistenceProvider.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
import com.yahoo.document.Document;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/Selection.java b/persistence/src/main/java/com/yahoo/persistence/spi/Selection.java
index 4bcf75fa322..bf82c0f148e 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/Selection.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/Selection.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi;
import com.yahoo.document.Document;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/conformance/ConformanceTest.java b/persistence/src/main/java/com/yahoo/persistence/spi/conformance/ConformanceTest.java
index f3e7166b078..58a494a7e4d 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/conformance/ConformanceTest.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/conformance/ConformanceTest.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi.conformance;
import com.yahoo.document.BucketId;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/conformance/TestDocMan.java b/persistence/src/main/java/com/yahoo/persistence/spi/conformance/TestDocMan.java
index b002eabe7b8..d447ae85c16 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/conformance/TestDocMan.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/conformance/TestDocMan.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi.conformance;
import com.yahoo.document.*;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/conformance/package-info.java b/persistence/src/main/java/com/yahoo/persistence/spi/conformance/package-info.java
index 32180a07983..acb3963d066 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/conformance/package-info.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/conformance/package-info.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
@ExportPackage
@PublicApi
package com.yahoo.persistence.spi.conformance;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/package-info.java b/persistence/src/main/java/com/yahoo/persistence/spi/package-info.java
index 179e9029f73..0530b8a0f3a 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/package-info.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/package-info.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
@ExportPackage
@PublicApi
package com.yahoo.persistence.spi;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketIdListResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketIdListResult.java
index c02b7384fe5..a32c4355113 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketIdListResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketIdListResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. 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.document.BucketId;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketInfoResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketInfoResult.java
index e6e9d4a898e..a840e9e2075 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketInfoResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/BucketInfoResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. 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;
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
index 28df8a7f5a3..2eb9d105ec9 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/CreateIteratorResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi.result;
/**
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/GetResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/GetResult.java
index c74d81730ee..d7528681958 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/GetResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/GetResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. 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.document.Document;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/IterateResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/IterateResult.java
index ae9ce4ecf26..1228e27e325 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/IterateResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/IterateResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. 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.DocEntry;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/PartitionStateListResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/PartitionStateListResult.java
index 5989b6bc3ac..d687c021dd7 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/PartitionStateListResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/PartitionStateListResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. 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.PartitionState;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/RemoveResult.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/RemoveResult.java
index eb7abe9f5c4..c712da41286 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/RemoveResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/RemoveResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. 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;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/Result.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/Result.java
index 78d7326fb12..ba2a00af1ff 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/Result.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/Result.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.persistence.spi.result;
/**
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
index 97bccdb21b7..5906411d594 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/UpdateResult.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. 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;
diff --git a/persistence/src/main/java/com/yahoo/persistence/spi/result/package-info.java b/persistence/src/main/java/com/yahoo/persistence/spi/result/package-info.java
index 06a40dec719..35767c7d8db 100644
--- a/persistence/src/main/java/com/yahoo/persistence/spi/result/package-info.java
+++ b/persistence/src/main/java/com/yahoo/persistence/spi/result/package-info.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
@ExportPackage
@PublicApi
package com.yahoo.persistence.spi.result;