Proper nullable return declaration for AbstractValueAdaptingCache.lookup

Issue: SPR-15540
This commit is contained in:
Juergen Hoeller
2018-02-26 13:05:12 +01:00
parent 7d89de06e3
commit c2d5ca9811
5 changed files with 24 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 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.
@@ -132,6 +132,7 @@ public class ConcurrentMapCache extends AbstractValueAdaptingCache {
}
@Override
@Nullable
protected Object lookup(Object key) {
return this.store.get(key);
}
@@ -201,8 +202,8 @@ public class ConcurrentMapCache extends AbstractValueAdaptingCache {
}
@Override
protected Object fromStoreValue(Object storeValue) {
if (this.serialization != null) {
protected Object fromStoreValue(@Nullable Object storeValue) {
if (storeValue != null && this.serialization != null) {
try {
return super.fromStoreValue(deserializeValue(this.serialization, storeValue));
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2018 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.
@@ -65,7 +65,8 @@ public abstract class AbstractValueAdaptingCache implements Cache {
public <T> T get(Object key, @Nullable Class<T> type) {
Object value = fromStoreValue(lookup(key));
if (value != null && type != null && !type.isInstance(value)) {
throw new IllegalStateException("Cached value is not of required type [" + type.getName() + "]: " + value);
throw new IllegalStateException(
"Cached value is not of required type [" + type.getName() + "]: " + value);
}
return (T) value;
}
@@ -73,8 +74,9 @@ public abstract class AbstractValueAdaptingCache implements Cache {
/**
* Perform an actual lookup in the underlying store.
* @param key the key whose associated value is to be returned
* @return the raw store value for the key
* @return the raw store value for the key, or {@code null} if none
*/
@Nullable
protected abstract Object lookup(Object key);
@@ -85,7 +87,7 @@ public abstract class AbstractValueAdaptingCache implements Cache {
* @return the value to return to the user
*/
@Nullable
protected Object fromStoreValue(Object storeValue) {
protected Object fromStoreValue(@Nullable Object storeValue) {
if (this.allowNullValues && storeValue == NullValue.INSTANCE) {
return null;
}
@@ -104,8 +106,7 @@ public abstract class AbstractValueAdaptingCache implements Cache {
return NullValue.INSTANCE;
}
throw new IllegalArgumentException(
String.format("Cache '%s' is configured to not allow null " +
"values but null was provided", getName()));
"Cache '" + getName() + "' is configured to not allow null values but null was provided");
}
return userValue;
}