1 25 26 package org.objectweb.jonas.jtests.beans.jdbcra; 27 28 import java.rmi.RemoteException ; 29 import javax.ejb.EJBObject ; 30 31 34 35 public interface JdbcRA1 extends EJBObject { 36 37 public double getBalance() throws RemoteException ; 38 public void setBalance(double d) throws RemoteException ; 39 public String getCustomer() throws RemoteException ; 40 public void setCustomer(String c) throws RemoteException ; 41 public int getNumber() throws RemoteException ; 42 43 } 44 | Popular Tags |