Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note
titleVersion warning

Content of this page applies to The content below is for Apache Syncope ><= 1.1.X2 - for later versions the Reference Guide is available.

Introduction

A propagation action class is a Java class that implements some specific actions to be performed before and after propagation.

...

A propagation action class is a Java implementation of the PropagationActions interface provided below.

Code Block

public interface PropagationActions {

    void before(PropagationTask task, ConnectorObject beforeObj);

    void after(PropagationTask task, TaskExec execution, ConnectorObject afterObj);
}

If a Propagation Actions Class has been specified for a certain Resource external resource, PropagationActions's implemented methods will be executed during propagation:

...