com.javelin.fpml.shared
Interface BusinessCenterTimeHome


public interface BusinessCenterTimeHome

BusinessCenterTimeHome.java

null

Author:
Javelin Software
See Also:
BusinessCenterTime, BusinessCenterTimeSession, BusinessCenterTimeValidator

Method Summary
 int countByQuery(java.lang.String query)
          Count the Beans using a String.
 BusinessCenterTime create(BusinessCenterTime businessCenterTime)
          Create just this BusinessCenterTime in the store.
 java.util.Iterator findByAll()
          Find All the 'available' beans.
 BusinessCenterTime findByBusinessCenter(java.lang.Object businessCenterKey)
          Find the BusinessCenterTime By BusinessCenter
 BusinessCenterTime findByPrimaryKey(java.lang.Object businessCenterTimeKey)
          Find the BusinessCenterTime By PrimaryKey
 java.util.Iterator findByQuery(java.lang.String query)
          Find the Beans using a String.
 java.util.Iterator findByQuery(java.lang.String query, int maxRows)
          Find the Beans using a Query String, with a maximum return row count.
 void load(BusinessCenterTime businessCenterTime)
          Reload the BusinessCenterTime based on it's primaryKey.
 void remove(BusinessCenterTime businessCenterTimeKey)
          Remove just this BusinessCenterTime in the store.
 void store(BusinessCenterTime businessCenterTime)
          Store just this BusinessCenterTime in the store.
 

Method Detail

findByAll

public java.util.Iterator findByAll()
                             throws FinderException,
                                    ValidationException
Find All the 'available' beans.

Returns:
Iterator
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

findByPrimaryKey

public BusinessCenterTime findByPrimaryKey(java.lang.Object businessCenterTimeKey)
                                    throws FinderException,
                                           ValidationException
Find the BusinessCenterTime By PrimaryKey

Parameters:
businessCenterTimeKey -
Returns:
BusinessCenterTime
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

findByBusinessCenter

public BusinessCenterTime findByBusinessCenter(java.lang.Object businessCenterKey)
                                        throws FinderException,
                                               ValidationException
Find the BusinessCenterTime By BusinessCenter

Parameters:
businessCenterKey -
Returns:
BusinessCenterTime
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

findByQuery

public java.util.Iterator findByQuery(java.lang.String query)
                               throws FinderException,
                                      ValidationException
Find the Beans using a String.

Parameters:
query - A Query String, usually a SQL query.
Returns:
Iterator
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

findByQuery

public java.util.Iterator findByQuery(java.lang.String query,
                                      int maxRows)
                               throws FinderException,
                                      ValidationException
Find the Beans using a Query String, with a maximum return row count.

Parameters:
query - A Query String
maxRows - The maximum number of rows to return.
Returns:
Iterator
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

countByQuery

public int countByQuery(java.lang.String query)
                 throws FinderException,
                        ValidationException
Count the Beans using a String.

Parameters:
query - A Query String
Returns:
int the number of matching beans
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

load

public void load(BusinessCenterTime businessCenterTime)
          throws LoadException,
                 ValidationException
Reload the BusinessCenterTime based on it's primaryKey.

Throws:
LoadException - If there was a problem loading the Bean.
ValidationException - If there was a problem validating the Bean.

create

public BusinessCenterTime create(BusinessCenterTime businessCenterTime)
                          throws CreateException,
                                 ValidationException
Create just this BusinessCenterTime in the store.

Throws:
CreateException - If there was a problem creating the Bean.
ValidationException - If there was a problem validating the Bean.

store

public void store(BusinessCenterTime businessCenterTime)
           throws StoreException,
                  ValidationException
Store just this BusinessCenterTime in the store.

Throws:
StoreException - If there was a problem storing the Bean.
ValidationException - If there was a problem validating the Bean.

remove

public void remove(BusinessCenterTime businessCenterTimeKey)
            throws RemoveException,
                   ValidationException
Remove just this BusinessCenterTime in the store.

Throws:
RemoveException - If there was a problem removing the Bean.
ValidationException - If there was a problem validating the Bean.