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