* the backup listeners that a backup has been created.
* @param newBackup the new created backup.
*/
public void backupCreated(BackupDescriptor newBackup)
{
BackupCreatedEvent ev = new BackupCreatedEvent(newBackup);
for (BackupCreatedListener listener : backupListeners)
{
listener.backupCreated(ev);
}
}