com.bankframe.examples.bo.customer
Interface Customer

All Known Subinterfaces:
Customer

public interface Customer

This interface defines the remote interface of the Customer Entity.


Method Summary
 void amend(String title, String firstName, String lastName)
          This method amends the attributes of the Customer entity.
 String getFirstName()
           
 String getLastName()
           
 String getOwnerId()
           
 String getTitle()
           
 

Method Detail

amend

void amend(String title,
           String firstName,
           String lastName)
           throws ValidationException,
                  RemoteException
This method amends the attributes of the Customer entity.

Parameters:
title -
firstName -
lastName -
Throws:
RemoteException
ValidationException

getFirstName

String getFirstName()
                    throws RemoteException
Returns:
the firstName attribute
Throws:
RemoteException

getLastName

String getLastName()
                   throws RemoteException
Returns:
the lastName attribute
Throws:
RemoteException

getOwnerId

String getOwnerId()
                  throws RemoteException
Returns:
the ownerId attribute
Throws:
RemoteException

getTitle

String getTitle()
                throws RemoteException
Returns:
the title attribute
Throws:
RemoteException


Copyright © 2005, 2007, Oracle. All rights reserved.