From cde9798aab57cfa346285d069c954719ca460b56 Mon Sep 17 00:00:00 2001 From: Costin Leau Date: Tue, 2 Nov 2010 18:15:15 +0200 Subject: [PATCH] + updated copyright header --- .project | 17 ----------------- .../datastore/keyvalue/redis/PlaceHolder.java | 15 +++++++++++++++ .../CannotGetRedisConnectionException.java | 4 ++-- .../redis/core/AbstractRedisClient.java | 2 +- .../redis/core/AbstractRedisClientFactory.java | 2 +- .../redis/core/DefaultServerOperations.java | 2 +- .../redis/core/KeyValueOperations.java | 2 +- .../datastore/redis/core/ListOperations.java | 2 +- .../datastore/redis/core/RedisAccessor.java | 2 +- .../datastore/redis/core/RedisCallback.java | 2 +- .../datastore/redis/core/RedisClient.java | 2 +- .../redis/core/RedisClientFactory.java | 2 +- .../datastore/redis/core/RedisOperations.java | 2 +- .../datastore/redis/core/RedisTemplate.java | 2 +- .../datastore/redis/core/ServerOperations.java | 2 +- .../core/jedis/CachingJedisClientFactory.java | 2 +- .../datastore/redis/core/jedis/JedisClient.java | 2 +- .../redis/core/jedis/JedisClientCallback.java | 2 +- .../redis/core/jedis/JedisClientFactory.java | 2 +- .../JedisPersistenceExceptionTranslator.java | 2 +- .../redis/core/jredis/JRedisClientCallback.java | 2 +- .../redis/core/jredis/JRedisClientFactory.java | 2 +- .../JRedisPersistenceExceptionTranslator.java | 2 +- .../redis/core/jredis/JRedisSpringClient.java | 2 +- .../RedisPersistenceExceptionTranslator.java | 2 +- .../datastore/redis/support/RedisUtils.java | 2 +- .../converter/DefaultRedisConverter.java | 2 +- .../redis/support/converter/RedisConverter.java | 2 +- .../core/AbstractClientIntegrationTests.java | 2 +- .../datastore/redis/core/Person.java | 5 ++--- .../core/RedisTemplateIntegrationTests.java | 2 +- .../jedis/JedisRedisClientIntegrationTests.java | 2 +- .../jredis/JRedisClientIntegrationTests.java | 2 +- .../datastore/riak/core/RiakOperations.java | 2 +- .../riak/core/RiakTemplateIntegrationTests.java | 2 +- 35 files changed, 50 insertions(+), 53 deletions(-) delete mode 100644 .project diff --git a/.project b/.project deleted file mode 100644 index 72d752915..000000000 --- a/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - spring-datastore-keyvalue-dist - - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.maven.ide.eclipse.maven2Nature - - diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/keyvalue/redis/PlaceHolder.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/keyvalue/redis/PlaceHolder.java index 4b204fc51..1ffcfad09 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/keyvalue/redis/PlaceHolder.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/keyvalue/redis/PlaceHolder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2010 the original author or authors. + * + * 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 org.springframework.datastore.keyvalue.redis; public class PlaceHolder { diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/CannotGetRedisConnectionException.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/CannotGetRedisConnectionException.java index 6775acff3..91c5fa88a 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/CannotGetRedisConnectionException.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/CannotGetRedisConnectionException.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,8 +20,8 @@ import org.springframework.dao.DataAccessResourceFailureException; /** * Fatal exception thrown when we can't connect to Redis. + * * @author Mark Pollack - * */ public class CannotGetRedisConnectionException extends DataAccessResourceFailureException { diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClient.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClient.java index 458c2e0a8..983f30895 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClient.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClientFactory.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClientFactory.java index a23109bef..87de5d108 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClientFactory.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/AbstractRedisClientFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/DefaultServerOperations.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/DefaultServerOperations.java index a2cea5aa4..83c29932b 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/DefaultServerOperations.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/DefaultServerOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/KeyValueOperations.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/KeyValueOperations.java index 8e6c8485f..c5033c2af 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/KeyValueOperations.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/KeyValueOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ListOperations.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ListOperations.java index 481bb84b0..3e20ac484 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ListOperations.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ListOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisAccessor.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisAccessor.java index a24228fea..a95de9b2c 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisAccessor.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisAccessor.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisCallback.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisCallback.java index 9e2de19a4..a92a0525f 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisCallback.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisCallback.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClient.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClient.java index 42373d77d..961abe4c6 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClient.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClientFactory.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClientFactory.java index 3ac6358a0..d92911ab1 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClientFactory.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisClientFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisOperations.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisOperations.java index b677521dd..a243aeba1 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisOperations.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisTemplate.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisTemplate.java index dd32b18cc..2009b5d78 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisTemplate.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/RedisTemplate.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ServerOperations.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ServerOperations.java index 10e270757..b1ba4564e 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ServerOperations.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/ServerOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/CachingJedisClientFactory.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/CachingJedisClientFactory.java index 1a6d87456..8ce7988d8 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/CachingJedisClientFactory.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/CachingJedisClientFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClient.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClient.java index ec57649da..ac243925c 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClient.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientCallback.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientCallback.java index d4fd005c6..4221e8c10 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientCallback.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientCallback.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientFactory.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientFactory.java index edcadd191..5d208d364 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientFactory.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisClientFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisPersistenceExceptionTranslator.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisPersistenceExceptionTranslator.java index edc4312f8..bf71e4de8 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisPersistenceExceptionTranslator.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jedis/JedisPersistenceExceptionTranslator.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientCallback.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientCallback.java index 11dbeca50..d1495ec38 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientCallback.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientCallback.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientFactory.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientFactory.java index f951e13a9..f043064a7 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientFactory.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisClientFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisPersistenceExceptionTranslator.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisPersistenceExceptionTranslator.java index 19cb45d9f..4e4b61e6f 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisPersistenceExceptionTranslator.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisPersistenceExceptionTranslator.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisSpringClient.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisSpringClient.java index 712aa1381..02659a6fb 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisSpringClient.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/core/jredis/JRedisSpringClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisPersistenceExceptionTranslator.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisPersistenceExceptionTranslator.java index 58809dbc4..cb2fad853 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisPersistenceExceptionTranslator.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisPersistenceExceptionTranslator.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisUtils.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisUtils.java index b4cc17721..433d45f25 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisUtils.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/RedisUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/DefaultRedisConverter.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/DefaultRedisConverter.java index d6339a609..4d5866f62 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/DefaultRedisConverter.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/DefaultRedisConverter.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/RedisConverter.java b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/RedisConverter.java index 7cb1fc230..150ebf114 100644 --- a/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/RedisConverter.java +++ b/spring-datastore-redis/src/main/java/org/springframework/datastore/redis/support/converter/RedisConverter.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/AbstractClientIntegrationTests.java b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/AbstractClientIntegrationTests.java index 5af72d6ac..de205e044 100644 --- a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/AbstractClientIntegrationTests.java +++ b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/AbstractClientIntegrationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/Person.java b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/Person.java index 5d919b892..48396bc17 100644 --- a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/Person.java +++ b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/Person.java @@ -1,7 +1,5 @@ -package org.springframework.datastore.redis.core; - /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,6 +13,7 @@ package org.springframework.datastore.redis.core; * See the License for the specific language governing permissions and * limitations under the License. */ +package org.springframework.datastore.redis.core; import java.io.Serializable; diff --git a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/RedisTemplateIntegrationTests.java b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/RedisTemplateIntegrationTests.java index 3844bed3d..a962d31f5 100644 --- a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/RedisTemplateIntegrationTests.java +++ b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/RedisTemplateIntegrationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jedis/JedisRedisClientIntegrationTests.java b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jedis/JedisRedisClientIntegrationTests.java index ee493184d..40d4f22fa 100644 --- a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jedis/JedisRedisClientIntegrationTests.java +++ b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jedis/JedisRedisClientIntegrationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jredis/JRedisClientIntegrationTests.java b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jredis/JRedisClientIntegrationTests.java index ad6f67338..478730048 100644 --- a/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jredis/JRedisClientIntegrationTests.java +++ b/spring-datastore-redis/src/test/java/org/springframework/datastore/redis/core/jredis/JRedisClientIntegrationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-riak/src/main/java/org/springframework/datastore/riak/core/RiakOperations.java b/spring-datastore-riak/src/main/java/org/springframework/datastore/riak/core/RiakOperations.java index f4f7a777b..5bcb90d30 100644 --- a/spring-datastore-riak/src/main/java/org/springframework/datastore/riak/core/RiakOperations.java +++ b/spring-datastore-riak/src/main/java/org/springframework/datastore/riak/core/RiakOperations.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-datastore-riak/src/test/java/org/springframework/datastore/riak/core/RiakTemplateIntegrationTests.java b/spring-datastore-riak/src/test/java/org/springframework/datastore/riak/core/RiakTemplateIntegrationTests.java index e154e38df..cb3b6b8b9 100644 --- a/spring-datastore-riak/src/test/java/org/springframework/datastore/riak/core/RiakTemplateIntegrationTests.java +++ b/spring-datastore-riak/src/test/java/org/springframework/datastore/riak/core/RiakTemplateIntegrationTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.