Added author to all java files with class comments.
[utils] / support / src / main / java / org / wamblee / cache / CachedObject.java
index 787bc8703d015c685041729192ab9441b7e93172..58daf8c918ee3c53ff4ade7d31db0ee9d90fe279 100644 (file)
@@ -24,6 +24,8 @@ import org.apache.log4j.Logger;
  * Represents a cached object. The object is either retrieved from the cache if
  * the cache has it, or a call back is invoked to get the object (and put it in
  * the cache).
+ *
+ * @author Erik Brakkee
  */
 public class CachedObject<KeyType extends Serializable, ValueType extends Serializable> {