From 7d60d6f88d44e3c92051c8029c14b1f95ce07334 Mon Sep 17 00:00:00 2001 From: Jay J Wylie Date: Fri, 12 Oct 2012 14:25:45 -0700 Subject: [PATCH] updated copyrights on touched files. --- src/java/voldemort/server/VoldemortServer.java | 2 +- .../performance/RoutedStoreParallelismTest.java | 2 +- .../failuredetector/ServerStoreVerifierTest.java | 2 +- .../scheduled/StreamingSlopPusherTest.java | 15 +++++++++++++++ test/unit/voldemort/server/EndToEndTest.java | 15 +++++++++++++++ .../voldemort/server/gossip/GossiperTest.java | 15 +++++++++++++++ .../voldemort/server/socket/NioStatsJmxTest.java | 2 +- .../store/readonly/swapper/StoreSwapperTest.java | 2 +- .../rebalancing/RebootstrappingStoreTest.java | 15 +++++++++++++++ .../unit/voldemort/utils/ServerTestUtilsTest.java | 2 +- .../ChainedInconsistencyResolverTest.java | 15 +++++++++++++++ 11 files changed, 81 insertions(+), 6 deletions(-) diff --git a/src/java/voldemort/server/VoldemortServer.java b/src/java/voldemort/server/VoldemortServer.java index cab93df3e0..e2741e5816 100644 --- a/src/java/voldemort/server/VoldemortServer.java +++ b/src/java/voldemort/server/VoldemortServer.java @@ -1,5 +1,5 @@ /* - * Copyright 2008-2009 LinkedIn, Inc + * Copyright 2008-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/test/integration/voldemort/performance/RoutedStoreParallelismTest.java b/test/integration/voldemort/performance/RoutedStoreParallelismTest.java index a82ab617a5..e076a17b75 100644 --- a/test/integration/voldemort/performance/RoutedStoreParallelismTest.java +++ b/test/integration/voldemort/performance/RoutedStoreParallelismTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2010 LinkedIn, Inc + * Copyright 2010-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/test/unit/voldemort/cluster/failuredetector/ServerStoreVerifierTest.java b/test/unit/voldemort/cluster/failuredetector/ServerStoreVerifierTest.java index 01622f30f7..8b670e8eea 100644 --- a/test/unit/voldemort/cluster/failuredetector/ServerStoreVerifierTest.java +++ b/test/unit/voldemort/cluster/failuredetector/ServerStoreVerifierTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2010 LinkedIn, Inc. + * Copyright 2010-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/test/unit/voldemort/scheduled/StreamingSlopPusherTest.java b/test/unit/voldemort/scheduled/StreamingSlopPusherTest.java index 53f32949d1..e44dddb6d5 100644 --- a/test/unit/voldemort/scheduled/StreamingSlopPusherTest.java +++ b/test/unit/voldemort/scheduled/StreamingSlopPusherTest.java @@ -1,3 +1,18 @@ +/* + * 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.scheduled; import static org.junit.Assert.assertEquals; diff --git a/test/unit/voldemort/server/EndToEndTest.java b/test/unit/voldemort/server/EndToEndTest.java index ab6374bc44..a6a4f89098 100644 --- a/test/unit/voldemort/server/EndToEndTest.java +++ b/test/unit/voldemort/server/EndToEndTest.java @@ -1,3 +1,18 @@ +/* + * 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.server; import static org.junit.Assert.assertEquals; diff --git a/test/unit/voldemort/server/gossip/GossiperTest.java b/test/unit/voldemort/server/gossip/GossiperTest.java index 5f55558f6f..041190223a 100644 --- a/test/unit/voldemort/server/gossip/GossiperTest.java +++ b/test/unit/voldemort/server/gossip/GossiperTest.java @@ -1,3 +1,18 @@ +/* + * 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.server.gossip; import static org.junit.Assert.assertEquals; diff --git a/test/unit/voldemort/server/socket/NioStatsJmxTest.java b/test/unit/voldemort/server/socket/NioStatsJmxTest.java index 3a52cc3aaf..fa8b9f138a 100644 --- a/test/unit/voldemort/server/socket/NioStatsJmxTest.java +++ b/test/unit/voldemort/server/socket/NioStatsJmxTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2008-2009 LinkedIn, Inc + * Copyright 2008-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/test/unit/voldemort/store/readonly/swapper/StoreSwapperTest.java b/test/unit/voldemort/store/readonly/swapper/StoreSwapperTest.java index 3ad0ebdf20..7b27d438ec 100644 --- a/test/unit/voldemort/store/readonly/swapper/StoreSwapperTest.java +++ b/test/unit/voldemort/store/readonly/swapper/StoreSwapperTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 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/test/unit/voldemort/store/rebalancing/RebootstrappingStoreTest.java b/test/unit/voldemort/store/rebalancing/RebootstrappingStoreTest.java index 38fb9d2d9d..3d65074c88 100644 --- a/test/unit/voldemort/store/rebalancing/RebootstrappingStoreTest.java +++ b/test/unit/voldemort/store/rebalancing/RebootstrappingStoreTest.java @@ -1,3 +1,18 @@ +/* + * 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.rebalancing; import static org.junit.Assert.assertEquals; diff --git a/test/unit/voldemort/utils/ServerTestUtilsTest.java b/test/unit/voldemort/utils/ServerTestUtilsTest.java index 7a741f3f31..6b5f43776d 100644 --- a/test/unit/voldemort/utils/ServerTestUtilsTest.java +++ b/test/unit/voldemort/utils/ServerTestUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2008-2009 LinkedIn, Inc + * Copyright 2008-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/test/unit/voldemort/versioning/ChainedInconsistencyResolverTest.java b/test/unit/voldemort/versioning/ChainedInconsistencyResolverTest.java index ed59630d1b..86f99a27c5 100644 --- a/test/unit/voldemort/versioning/ChainedInconsistencyResolverTest.java +++ b/test/unit/voldemort/versioning/ChainedInconsistencyResolverTest.java @@ -1,3 +1,18 @@ +/* + * 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.versioning; import static org.junit.Assert.assertEquals;