Class SimpleValueWrapper

java.lang.Object
org.springframework.cache.support.SimpleValueWrapper
All Implemented Interfaces:
Cache.ValueWrapper

public class SimpleValueWrapper extends Object implements Cache.ValueWrapper
Straightforward implementation of Cache.ValueWrapper, simply holding the value as given at construction and returning it from get().
Since:
3.1
Author:
Costin Leau
  • Constructor Details

    • SimpleValueWrapper

      public SimpleValueWrapper(@Nullable Object value)
      Create a new SimpleValueWrapper instance for exposing the given value.
      Parameters:
      value - the value to expose (may be null)
  • Method Details