1 package org.exoplatform.services.portletcontainer.monitor; 2 7 public interface PortletRuntimeData { 8 String getPortletAppName(); 9 String getPortletName(); 10 boolean isInitialized(); 11 long getInitializationTime(); 12 long getLastAccessTime(); 13 long getLastFailureAccessTime(); 14 long getLastInitFailureAccessTime(); 15 void setLastInitFailureAccessTime(long lastInitFailureAccessTime); 16 long getUnavailabilityPeriod(); 17 boolean isDataCached(String key, boolean isCacheGlobal); 18 CachedData getCachedData(String key, boolean isCacheGlobal); 19 int getCacheExpirationPeriod(); 20 PortletRequestMonitorData[] getPortletRequestMonitorData(); 21 } | Popular Tags |