Interface ProvisioningActions
-
- All Known Subinterfaces:
PullActions
,PushActions
- All Known Implementing Classes:
ADMembershipPullActions
,DBPasswordPullActions
,LDAPMembershipPullActions
,LDAPPasswordPullActions
,TestPullActions
public interface ProvisioningActions
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
afterAll(ProvisioningProfile<?,?> profile)
Action to be executed after the provisioning (push / pull) task completion.default void
beforeAll(ProvisioningProfile<?,?> profile)
Action to be executed before to start the provisioning (push / pull) task execution.
-
-
-
Method Detail
-
beforeAll
default 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
-
afterAll
default 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
-
-