FileDocCategorySizeDatePackage
CustomerRemote.javaAPI DocExample526Tue Mar 05 04:40:02 GMT 2002com.titan.customer

CustomerRemote.java

package com.titan.customer;

import java.rmi.RemoteException;

public interface CustomerRemote extends javax.ejb.EJBObject 
{

   public String getLastName() throws RemoteException;
   public void setLastName(String lname) throws RemoteException;
   
   public String getFirstName() throws RemoteException;
   public void setFirstName(String fname) throws RemoteException;
   
   public boolean getHasGoodCredit() throws RemoteException;
   public void setHasGoodCredit(boolean flag) throws RemoteException;
}