Reviewers: awiner, shindig.remailer_gmail.com, etnu00,
http://codereview.appspot.com/90068/diff/1/5
File
java/common/src/main/java/org/apache/shindig/common/cache/CacheWrapper.java
(right):
http://codereview.appspot.com/90068/diff/1/5#newcode22
Line 22: * Convenient wrapper for a cache to ease adaptation.
It's the same idea as HttpServletRequestWrapper.
http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpServletRequestWrapper.html
Sometimes you want an easy way to delegate most methods to a default
implementation. That's annoying with an interface, but easy with a
class.
Please review this at http://codereview.appspot.com/90068
Affected files:
A
java/common/src/main/java/org/apache/shindig/common/cache/CacheWrapper.java
M
java/common/src/main/java/org/apache/shindig/expressions/Expressions.java
A
java/common/src/test/java/org/apache/shindig/common/cache/CacheWrapperTest.java
M
java/common/src/test/java/org/apache/shindig/expressions/ExpressionsTest.java