com.bankframe.examples.bo.address
Interface AddressFinders
- All Known Subinterfaces: 
- AddressHome
- public interface AddressFinders 
This interface defines the find operations for the Address Entity
 
findAll
Enumeration findAll()
                    throws FinderException,
                           ValidationException,
                           RemoteException
- This method retrieves all instances of the Address entity.
 
- 
- Returns:
- an ennumeration of all address entities.
- Throws:
- FinderException
- RemoteException
- ValidationException
 
findByCountry
Enumeration findByCountry(String country)
                          throws FinderException,
                                 ValidationException,
                                 RemoteException
- 
- Returns:
- an ennumeration of all instances of the Address Entity with the
 specified country value.
- Throws:
- FinderException
- RemoteException
- ValidationException
 
findByPostCode
Enumeration findByPostCode(String postCode)
                           throws FinderException,
                                  ValidationException,
                                  RemoteException
- 
- Returns:
- an enumeration of all instances of the Address entity with the
 specified postCode value.
- Throws:
- FinderException
- RemoteException
- ValidationException
 
Copyright © 2005, 2007, Oracle. All rights reserved.