1 package org.jboss.test.cluster.web; 2 3 import java.util.Set ; 4 5 public interface CacheHelperMBean 6 { 7 Object getSessionVersion(String sessionFqn); 8 9 Object getBuddySessionVersion(String sessionFqn) throws Exception ; 10 11 Set getSessionIds(String warFqn) throws Exception ; 12 13 void setLeaveInstalledAfterShutdown(); 14 15 void uninstall(); 16 17 } | Popular Tags |