1 16 17 package org.apache.jetspeed.services.portletcache; 18 19 import org.apache.turbine.services.Service; 20 21 33 public interface PortletCacheService extends Service { 34 35 public String SERVICE_NAME = "PortletCache"; 36 37 42 public void addCacheable( Cacheable item ); 43 44 49 public void removeCacheable( String handle ); 50 51 57 public Cacheable getCacheable( String handle ); 58 59 } 60 61 | Popular Tags |