1 22 package org.jboss.test.hello.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 27 31 public interface HelloLog extends EJBObject  32 { 33 public String getHelloArg() throws RemoteException ; 34 35 public long getStartTime() throws RemoteException ; 36 37 public long getEndTime() throws RemoteException ; 38 39 public long getElapsedTime() throws RemoteException ; 40 } 41 | Popular Tags |