public interface FiscalPeriodReceiver extends OsidReceiver
The fiscal period receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted fiscal period objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedFiscalPeriods(IdList fiscalPeriodIds)
The callback for notification of updated fiscal periods.
|
void |
deletedFiscalPeriods(IdList fiscalPeriodIds)
The callback for notification of deleted fiscal periods.
|
void |
newFiscalPeriods(IdList fiscalPeriodIds)
The callback for notifications of new fiscal periods.
|
down, upvoid newFiscalPeriods(IdList fiscalPeriodIds)
fiscalPeriodIds - the Ids of the new
FiscalPeriods mandatory - This method must be implemented. void changedFiscalPeriods(IdList fiscalPeriodIds)
fiscalPeriodIds - the Ids of the updated
FiscalPeriods mandatory - This method must be implemented. void deletedFiscalPeriods(IdList fiscalPeriodIds)
fiscalPeriodIds - the Ids of the deleted
FiscalPeriods mandatory - This method must be implemented.