1 22 package org.jboss.test.security.interfaces; 23 24 import java.io.IOException ; 25 import java.rmi.RemoteException ; 26 import javax.ejb.EJBObject ; 27 28 32 public interface IOSession extends EJBObject  33 { 34 public String read(String path) throws IOException , RemoteException ; 35 public String retryableRead(String path) throws IOException , RemoteException ; 36 public void write(String path) throws IOException , RemoteException ; 37 } 38 | Popular Tags |