Polish contribution

See #1173
This commit is contained in:
Vedran Pavic
2018-09-03 18:20:50 +02:00
parent 2113b330a7
commit 8267a90fcc
2 changed files with 7 additions and 8 deletions

View File

@@ -119,9 +119,8 @@ public class ReactiveRedisOperationsSessionRepository implements
} }
/** /**
* Returns {@link ReactiveRedisOperations} for sessions. * Returns the {@link ReactiveRedisOperations} used for sessions.
* * @return the {@link ReactiveRedisOperations} used for sessions
* @return {@link ReactiveRedisOperations} for sessions
* @since 2.1.0 * @since 2.1.0
*/ */
public ReactiveRedisOperations<String, Object> getSessionRedisOperations() { public ReactiveRedisOperations<String, Object> getSessionRedisOperations() {

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2014-2017 the original author or authors. * Copyright 2014-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -23,14 +23,14 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target; import java.lang.annotation.Target;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import org.springframework.data.redis.core.RedisOperations;
import org.springframework.session.data.redis.RedisOperationsSessionRepository;
/** /**
* Annotation used to inject the {@link RedisOperations} instance used by Spring Session's * Annotation used to inject the Redis accessor used by Spring Session's Redis session
* {@link RedisOperationsSessionRepository}. * repository.
* *
* @author Vedran Pavic * @author Vedran Pavic
* @see org.springframework.session.data.redis.RedisOperationsSessionRepository#getSessionRedisOperations()
* @see org.springframework.session.data.redis.ReactiveRedisOperationsSessionRepository#getSessionRedisOperations()
* @since 2.0.0 * @since 2.0.0
*/ */
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, @Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER,