|
Example 1 - User Interface
|
public interface User extends EJBObject
{
public String getId()
throws RemoteException;
public boolean CheckPassword(String pw)
throws RemoteException;
public void ChangePassword(String oldPW, String newPW)
throws RemoteException, UserException;
public int AllocateOwnedId()
throws RemoteException;
}
|