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 |
changedFiscalPeriod(Id fiscalPeriodId)
The callback for notification of updated fiscal periods.
|
void |
deletedFiscalPeriod(Id fiscalPeriodId)
The callback for notification of deleted fiscal periods.
|
void |
newFiscalPeriod(Id fiscalPeriodId)
The callback for notifications of new fiscal periods.
|
down, upvoid newFiscalPeriod(Id fiscalPeriodId)
fiscalPeriodId - the Id of the new
FiscalPeriod mandatory - This method must be implemented. void changedFiscalPeriod(Id fiscalPeriodId)
fiscalPeriodId - the Id of the updated
FiscalPeriod mandatory - This method must be implemented. void deletedFiscalPeriod(Id fiscalPeriodId)
fiscalPeriodId - the Id of the deleted
FiscalPeriod mandatory - This method must be implemented.