bluejob
Identifier:
net.bluemind.core.net.bluemind.core.bluejob
Since:
Blue Mind 1.0
Description:
Blue Mind core supports the scheduling of background jobs. This extension point is designed to register new jobs. Blue Mind admin console can be used to control when the jobs will run.
Configuration Markup:
<!ELEMENT extension (bluejob_provider+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT bluejob_provider EMPTY>
<!ATTLIST bluejob_provider
implementation CDATA #REQUIRED
>
- implementation - The fully qualified name of a class implementing
net.bluemind.core.jobs.IBlueJob
.
Examples:
The following is an example of the extension point:
<extension
point="net.bluemind.core.bluejob">
<bluejob_provider
implementation="net.bluemind.core.jobs.quota.QuotaGatheringJob">
</bluejob_provider>
</extension>
API Information:
All blue job extensions implement the net.bluemind.core.jobs.IBlueJob interface.
Supplied Implementation:
Blue Mind 1.0 provides jobs for checking user quotas, complete backup, domain backup (pro only), ldap sync and active directory sync (pro only).
Copyright © Blue Mind SAS, 2012