001 package org.picocontainer.web; 002 003 public interface Cache { 004 Object get(Object key); 005 void put(Object key, Object toCache); 006 }