com.javelin.fpml.shared
Interface AdjustableOrRelativeDatesSession


public interface AdjustableOrRelativeDatesSession

AdjustableOrRelativeDatesSession.java

null

Author:
Javelin Software
See Also:
AdjustableOrRelativeDates, AdjustableOrRelativeDatesHome, AdjustableOrRelativeDatesValidator

Method Summary
 int countByQuery(java.lang.String query)
          Count the Beans using a String.
 AdjustableOrRelativeDates findByAdjustableDates(java.lang.Object adjustableDatesKey)
          Find the AdjustableOrRelativeDates By AdjustableDates
 java.util.Iterator findByAll()
          Find All the beans.
 AdjustableOrRelativeDates findByPrimaryKey(java.lang.Object adjustableOrRelativeDatesKey)
          Find the AdjustableOrRelativeDates 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 String, with a max row count.
 AdjustableOrRelativeDates findByRelativeDates(java.lang.Object relativeDatesKey)
          Find the AdjustableOrRelativeDates By RelativeDates
 void load(AdjustableOrRelativeDates adjustableOrRelativeDates)
          Reload the bean, and any dependent beans from the store.
 void remove(AdjustableOrRelativeDates adjustableOrRelativeDates)
          Remove the bean, and any dependent beans from the store.
 void save(AdjustableOrRelativeDates adjustableOrRelativeDates)
          Create or Save the bean, and any dependent beans to the store.
 

Method Detail

findByAll

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

Returns:
Iterator The Beans that were found.
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 AdjustableOrRelativeDates findByPrimaryKey(java.lang.Object adjustableOrRelativeDatesKey)
                                           throws FinderException,
                                                  ValidationException
Find the AdjustableOrRelativeDates By PrimaryKey

Parameters:
adjustableOrRelativeDatesKey -
Returns:
AdjustableOrRelativeDates The Bean/s that was found.
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

findByAdjustableDates

public AdjustableOrRelativeDates findByAdjustableDates(java.lang.Object adjustableDatesKey)
                                                throws FinderException,
                                                       ValidationException
Find the AdjustableOrRelativeDates By AdjustableDates

Parameters:
adjustableDatesKey -
Returns:
AdjustableOrRelativeDates The Bean/s that was found.
Throws:
FinderException - If there was a problem finding any of the beans.
ValidationException - If there was a problem validating any of the beans.

findByRelativeDates

public AdjustableOrRelativeDates findByRelativeDates(java.lang.Object relativeDatesKey)
                                              throws FinderException,
                                                     ValidationException
Find the AdjustableOrRelativeDates By RelativeDates

Parameters:
relativeDatesKey -
Returns:
AdjustableOrRelativeDates The Bean/s that was found.
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
Returns:
Iterator The Beans that were found.
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 String, with a max row count.

Parameters:
query - A Query String
maxRows - The maximum number of rows to return.
Returns:
Iterator The Beans that were found.
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
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(AdjustableOrRelativeDates adjustableOrRelativeDates)
          throws LoadException,
                 ValidationException
Reload the bean, and any dependent beans from the store.

Throws:
LoadException - If there was a problem loading any of the beans.
ValidationException - If there was a problem validating any of the beans.

save

public void save(AdjustableOrRelativeDates adjustableOrRelativeDates)
          throws CreateException,
                 StoreException,
                 ValidationException
Create or Save the bean, and any dependent beans to the store.

Throws:
CreateException - If there was a problem creating any of the beans.
StoreException - If there was a problem storing any of the beans.
ValidationException - If there was a problem validating any of the beans.

remove

public void remove(AdjustableOrRelativeDates adjustableOrRelativeDates)
            throws RemoveException,
                   ValidationException
Remove the bean, and any dependent beans from the store.

Throws:
RemoveException - If there was a problem removing any of the beans.
ValidationException - If there was a problem validating any of the beans.