+ add jackson javadoc location

+ add some javadoc
This commit is contained in:
Costin Leau
2011-07-18 18:14:39 +03:00
parent 24f789035c
commit bcd7f307cf
2 changed files with 7 additions and 1 deletions

View File

@@ -123,7 +123,8 @@ javadoc {
links = [
"http://static.springframework.org/spring/docs/3.0.x/javadoc-api",
"http://download.oracle.com/javase/6/docs/api/"
"http://download.oracle.com/javase/6/docs/api",
"http://jackson.codehaus.org/1.8.2/javadoc"
]
exclude "org/springframework/data/redis/config/**"

View File

@@ -32,6 +32,11 @@ import org.springframework.util.StringUtils;
*/
public class RedisCollectionFactoryBean implements InitializingBean, BeanNameAware, FactoryBean<RedisStore> {
/**
* Collection types supported by this factory.
*
* @author Costin Leau
*/
public enum CollectionType {
LIST {
@Override