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