1 4 package org.jboss.test.cache.bean; 5 6 9 public interface TreeCacheTester 10 extends javax.ejb.EJBObject 11 { 12 13 public java.util.Vector getMembers( ) 14 throws java.rmi.RemoteException ; 15 16 public void setCacheMode( int mode ) 17 throws java.lang.Exception , java.rmi.RemoteException ; 18 19 public void setIsolationLevel( org.jboss.cache.lock.IsolationLevel level ) 20 throws java.rmi.RemoteException ; 21 22 public java.util.Set getKeys( java.lang.String fqn ) 23 throws org.jboss.cache.CacheException, java.rmi.RemoteException ; 24 25 public java.lang.Object get( java.lang.String fqn,java.lang.String key ) 26 throws org.jboss.cache.CacheException, java.rmi.RemoteException ; 27 28 public boolean exists( java.lang.String fqn ) 29 throws java.rmi.RemoteException ; 30 31 public void put( java.lang.String fqn,java.util.Map data ) 32 throws java.lang.Exception , java.rmi.RemoteException ; 33 34 public java.lang.Object put( java.lang.String fqn,java.lang.String key,java.lang.Object value ) 35 throws java.lang.Exception , java.rmi.RemoteException ; 36 37 public void remove( java.lang.String fqn ) 38 throws java.lang.Exception , java.rmi.RemoteException ; 39 40 public java.lang.Object remove( java.lang.String fqn,java.lang.String key ) 41 throws java.lang.Exception , java.rmi.RemoteException ; 42 43 public void releaseAllLocks( java.lang.String fqn ) 44 throws java.rmi.RemoteException ; 45 46 public java.lang.String print( java.lang.String fqn ) 47 throws java.rmi.RemoteException ; 48 49 public java.util.Set getChildrenNames( java.lang.String fqn ) 50 throws org.jboss.cache.CacheException, java.rmi.RemoteException ; 51 52 public java.lang.String printDetails( ) 53 throws java.rmi.RemoteException ; 54 55 public java.lang.String printLockInfo( ) 56 throws java.rmi.RemoteException ; 57 58 } 59 | Popular Tags |