Interface ProvisioningActions
- 
- All Known Subinterfaces:
- PullActions,- PushActions
 - All Known Implementing Classes:
- ADMembershipPullActions,- DBPasswordPullActions,- LDAPMembershipPullActions,- LDAPPasswordPullActions,- TestPullActions
 
 public interface ProvisioningActions
- 
- 
Method SummaryAll Methods Instance Methods Default Methods Modifier and Type Method Description default voidafterAll(ProvisioningProfile<?,?> profile)Action to be executed after the provisioning (push / pull) task completion.default voidbeforeAll(ProvisioningProfile<?,?> profile)Action to be executed before to start the provisioning (push / pull) task execution.
 
- 
- 
- 
Method Detail- 
beforeAlldefault void beforeAll(ProvisioningProfile<?,?> profile) throws org.quartz.JobExecutionException Action to be executed before to start the provisioning (push / pull) task execution.- Parameters:
- profile- provisioning profile
- Throws:
- org.quartz.JobExecutionException- in case of generic failure
 
 - 
afterAlldefault void afterAll(ProvisioningProfile<?,?> profile) throws org.quartz.JobExecutionException Action to be executed after the provisioning (push / pull) task completion.- Parameters:
- profile- provisioning profile
- Throws:
- org.quartz.JobExecutionException- in case of generic failure
 
 
- 
 
-