INT-2716 Fix Javadoc Warnings

This commit is contained in:
Gary Russell
2012-08-29 14:07:17 -04:00
parent 6be155fbc5
commit 92959b3e06
2 changed files with 7 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ public class ExpressionUtils {
* Create a {@link StandardEvaluationContext} with a {@link MapAccessor} in its
* property accessor property and the supplied {@link BeanResolver} in its
* beanResolver property.
* @param beanResolver the bean factory.
* @param beanResolver the bean resolver.
* @return the evaluation context.
*/
public static StandardEvaluationContext createStandardEvaluationContext(BeanResolver beanResolver) {
@@ -72,7 +72,7 @@ public class ExpressionUtils {
* property accessor property, the supplied {@link BeanResolver} in its
* beanResolver property, and the supplied {@link ConversionService} in its
* conversionService property.
* @param beanResolver the bean factory.
* @param beanResolver the bean resolver.
* @param conversionService the conversion service.
* @return the evaluation context.
*/
@@ -93,8 +93,8 @@ public class ExpressionUtils {
* Creates {@link BeanFactoryResolver}, extracts {@link ConversionService} and delegates to
* {@link #createStandardEvaluationContext(BeanResolver, ConversionService)}
*
* @param beanFactory
* @return
* @param beanFactory the beanFactory.
* @return the evaluation context.
*/
public static StandardEvaluationContext createStandardEvaluationContext(BeanFactory beanFactory) {
ConversionService conversionService = IntegrationContextUtils.getConversionService(beanFactory);

View File

@@ -120,12 +120,12 @@ public class RedisCollectionPopulatingMessageHandler extends AbstractMessageHand
/**
* Will construct this instance using the provided {@link RedisConnectionFactory}.
* It will create an instance of {@link RedisTemplate}, initializing it with a
* {@link StringRedisSerializer} for the keySerializer and a {@link JdkSeriaalizationRedisSerializer}
* {@link StringRedisSerializer} for the keySerializer and a {@link JdkSerializationRedisSerializer}
* for each of valueSerializer, hasKeySerializer, and hashValueSerializer.
*
* The default expression 'headers.{@link RedisHeaders#KEY}'
* will be used.
* @param redisTemplate
* @param connectionFactory
*/
public RedisCollectionPopulatingMessageHandler(RedisConnectionFactory connectionFactory) {
this(connectionFactory, null);
@@ -140,7 +140,7 @@ public class RedisCollectionPopulatingMessageHandler extends AbstractMessageHand
* If {@link #keyExpression} is null, the default expression 'headers.{@link RedisHeaders#KEY}'
* will be used.
*
* @param redisTemplate
* @param connectionFactory
* @param keyExpression
*/
public RedisCollectionPopulatingMessageHandler(RedisConnectionFactory connectionFactory, Expression keyExpression) {