From 79277d14e6e1e503b192381b9b45c4d293f93617 Mon Sep 17 00:00:00 2001 From: Jay J Wylie Date: Mon, 3 Dec 2012 16:23:37 -0800 Subject: [PATCH] Updated copyright notices in all files I touched. --- .../failuredetector/AbstractFailureDetector.java | 2 +- .../AsyncRecoveryFailureDetector.java | 2 +- .../ThresholdFailureDetector.java | 2 +- .../store/routed/action/AbstractAction.java | 2 +- .../action/PerformParallelDeleteRequests.java | 16 ++++++++++++++++ .../action/PerformParallelGetAllRequests.java | 2 +- .../routed/action/PerformParallelRequests.java | 2 +- src/java/voldemort/store/slop/HintedHandoff.java | 2 +- src/java/voldemort/store/stats/Histogram.java | 16 ++++++++++++++++ .../voldemort/store/stats/RequestCounter.java | 16 ++++++++++++++++ src/java/voldemort/store/stats/StoreStats.java | 16 ++++++++++++++++ .../voldemort/store/stats/HistogramTest.java | 16 ++++++++++++++++ 12 files changed, 87 insertions(+), 7 deletions(-) diff --git a/src/java/voldemort/cluster/failuredetector/AbstractFailureDetector.java b/src/java/voldemort/cluster/failuredetector/AbstractFailureDetector.java index debe6e1365..24dce0c3b4 100644 --- a/src/java/voldemort/cluster/failuredetector/AbstractFailureDetector.java +++ b/src/java/voldemort/cluster/failuredetector/AbstractFailureDetector.java @@ -1,5 +1,5 @@ /* - * Copyright 2009 Mustard Grain, Inc., 2009-2010 LinkedIn, Inc. + * Copyright 2009 Mustard Grain, Inc., 2009-2012 LinkedIn, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of diff --git a/src/java/voldemort/cluster/failuredetector/AsyncRecoveryFailureDetector.java b/src/java/voldemort/cluster/failuredetector/AsyncRecoveryFailureDetector.java index de9c08ca0c..fd2e1d3ec7 100644 --- a/src/java/voldemort/cluster/failuredetector/AsyncRecoveryFailureDetector.java +++ b/src/java/voldemort/cluster/failuredetector/AsyncRecoveryFailureDetector.java @@ -1,5 +1,5 @@ /* - * Copyright 2009 Mustard Grain, Inc., 2009-2010 LinkedIn, Inc. + * Copyright 2009 Mustard Grain, Inc., 2009-2012 LinkedIn, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of diff --git a/src/java/voldemort/cluster/failuredetector/ThresholdFailureDetector.java b/src/java/voldemort/cluster/failuredetector/ThresholdFailureDetector.java index 4c4e0eb936..5e3ec8c9b7 100644 --- a/src/java/voldemort/cluster/failuredetector/ThresholdFailureDetector.java +++ b/src/java/voldemort/cluster/failuredetector/ThresholdFailureDetector.java @@ -1,5 +1,5 @@ /* - * Copyright 2009-2010 LinkedIn, Inc. + * Copyright 2009-2012 LinkedIn, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of diff --git a/src/java/voldemort/store/routed/action/AbstractAction.java b/src/java/voldemort/store/routed/action/AbstractAction.java index db6ef869d3..cc97deb007 100644 --- a/src/java/voldemort/store/routed/action/AbstractAction.java +++ b/src/java/voldemort/store/routed/action/AbstractAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2010 LinkedIn, Inc + * Copyright 2011-2012 LinkedIn, Inc * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of diff --git a/src/java/voldemort/store/routed/action/PerformParallelDeleteRequests.java b/src/java/voldemort/store/routed/action/PerformParallelDeleteRequests.java index 21fef0a77e..d5fa5a5a30 100644 --- a/src/java/voldemort/store/routed/action/PerformParallelDeleteRequests.java +++ b/src/java/voldemort/store/routed/action/PerformParallelDeleteRequests.java @@ -1,3 +1,19 @@ +/* + * Copyright 2012 LinkedIn, Inc + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + package voldemort.store.routed.action; import java.util.ArrayList; diff --git a/src/java/voldemort/store/routed/action/PerformParallelGetAllRequests.java b/src/java/voldemort/store/routed/action/PerformParallelGetAllRequests.java index 37bf1ad9c6..abc9dc20cc 100644 --- a/src/java/voldemort/store/routed/action/PerformParallelGetAllRequests.java +++ b/src/java/voldemort/store/routed/action/PerformParallelGetAllRequests.java @@ -1,5 +1,5 @@ /* - * Copyright 2010 LinkedIn, Inc + * Copyright 2011-2012 LinkedIn, Inc * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of diff --git a/src/java/voldemort/store/routed/action/PerformParallelRequests.java b/src/java/voldemort/store/routed/action/PerformParallelRequests.java index 1b7486972c..b2aaa7abbf 100644 --- a/src/java/voldemort/store/routed/action/PerformParallelRequests.java +++ b/src/java/voldemort/store/routed/action/PerformParallelRequests.java @@ -1,5 +1,5 @@ /* - * Copyright 2010 LinkedIn, Inc + * Copyright 2011-2012 LinkedIn, Inc * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of diff --git a/src/java/voldemort/store/slop/HintedHandoff.java b/src/java/voldemort/store/slop/HintedHandoff.java index de465a32e1..5dd948581e 100644 --- a/src/java/voldemort/store/slop/HintedHandoff.java +++ b/src/java/voldemort/store/slop/HintedHandoff.java @@ -1,5 +1,5 @@ /* - * Copyright 2010 LinkedIn, Inc + * Copyright 2011-2012 LinkedIn, Inc * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of diff --git a/src/java/voldemort/store/stats/Histogram.java b/src/java/voldemort/store/stats/Histogram.java index ab118bc4fb..f93182aa7f 100644 --- a/src/java/voldemort/store/stats/Histogram.java +++ b/src/java/voldemort/store/stats/Histogram.java @@ -1,3 +1,19 @@ +/* + * Copyright 2012 LinkedIn, Inc + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + package voldemort.store.stats; import java.util.Arrays; diff --git a/src/java/voldemort/store/stats/RequestCounter.java b/src/java/voldemort/store/stats/RequestCounter.java index d72908ce5c..c0645bd189 100644 --- a/src/java/voldemort/store/stats/RequestCounter.java +++ b/src/java/voldemort/store/stats/RequestCounter.java @@ -1,3 +1,19 @@ +/* + * Copyright 2012 LinkedIn, Inc + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + package voldemort.store.stats; import java.util.concurrent.atomic.AtomicReference; diff --git a/src/java/voldemort/store/stats/StoreStats.java b/src/java/voldemort/store/stats/StoreStats.java index f934a47e42..13f8d22807 100644 --- a/src/java/voldemort/store/stats/StoreStats.java +++ b/src/java/voldemort/store/stats/StoreStats.java @@ -1,3 +1,19 @@ +/* + * Copyright 2012 LinkedIn, Inc + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + package voldemort.store.stats; import java.util.Collections; diff --git a/test/unit/voldemort/store/stats/HistogramTest.java b/test/unit/voldemort/store/stats/HistogramTest.java index da3a989a9a..956fe4296c 100644 --- a/test/unit/voldemort/store/stats/HistogramTest.java +++ b/test/unit/voldemort/store/stats/HistogramTest.java @@ -1,3 +1,19 @@ +/* + * Copyright 2012 LinkedIn, Inc + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + package voldemort.store.stats; import static org.junit.Assert.assertEquals;