1 22 package org.jboss.test.cmp2.jbas979; 23 24 28 public interface Facade 29 extends javax.ejb.EJBObject 30 { 31 void create(String ejbJndiName, Integer pk, String name) 32 throws Exception , java.rmi.RemoteException ; 33 34 void remove(String ejbJndiName, Integer pk) 35 throws Exception , java.rmi.RemoteException ; 36 37 String getName(String ejbJndiName, Integer pk) 38 throws Exception , java.rmi.RemoteException ; 39 40 String getNameFlushCacheGetName(String ejbJndiName, Integer pk) 41 throws Exception , java.rmi.RemoteException ; 42 43 String getNameFlushCacheSetName(String ejbJndiName, Integer pk, String value) 44 throws Exception , java.rmi.RemoteException ; 45 46 void updateDB(String tableName, Integer pk, String value) 47 throws Exception , java.rmi.RemoteException ; 48 49 void flushCache(String ejbJndiName) 50 throws Exception , java.rmi.RemoteException ; 51 52 void longTx(String ejbJndiName, Integer pk, long ms) 53 throws Exception , java.rmi.RemoteException ; 54 } 55 | Popular Tags |