| | |
| | | |
| | | |
| | | |
| | | /** |
| | | * An LDIF plugin result instance that indicates all processing was |
| | | * successful. |
| | | */ |
| | | public static final LDIFPluginResult SUCCESS = |
| | | new LDIFPluginResult(); |
| | | |
| | | |
| | | |
| | | // Indicates whether any further LDIF import/export plugins should |
| | | // be invoked for the associated entry. |
| | | private boolean continuePluginProcessing; |
| | | private final boolean continuePluginProcessing; |
| | | |
| | | // Indicates whether the associated entry should still be |
| | | // imported/exported. |
| | | private boolean continueEntryProcessing; |
| | | private final boolean continueEntryProcessing; |
| | | |
| | | |
| | | |
| | |
| | | * this case, it will indicate that all processing should continue |
| | | * as normal. |
| | | */ |
| | | public LDIFPluginResult() |
| | | private LDIFPluginResult() |
| | | { |
| | | assert debugConstructor(CLASS_NAME); |
| | | |
| | | this.continuePluginProcessing = true; |
| | | this.continueEntryProcessing = true; |
| | | this(true, true); |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Specifies whether any further LDIF import/export plugins should |
| | | * be invoked for the associated entry. |
| | | * |
| | | * @param continuePluginProcessing Specifies whether any further |
| | | * LDIF import/export plugins |
| | | * should be invoked for the |
| | | * associated entry. |
| | | */ |
| | | public void setContinuePluginProcessing( |
| | | boolean continuePluginProcessing) |
| | | { |
| | | assert debugEnter(CLASS_NAME, "setContinuePluginProcessing", |
| | | String.valueOf(continuePluginProcessing)); |
| | | |
| | | this.continuePluginProcessing = continuePluginProcessing; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Indicates whether the associated entry should still be |
| | | * imported/exported. |
| | | * |
| | |
| | | |
| | | |
| | | /** |
| | | * Specifies whether the associated entry should still be |
| | | * imported/exported. |
| | | * |
| | | * @param continueEntryProcessing Specifies whether the associated |
| | | * entry should still be |
| | | * imported/exported. |
| | | */ |
| | | public void setContinueEntryProcessing( |
| | | boolean continueEntryProcessing) |
| | | { |
| | | assert debugEnter(CLASS_NAME, "setContinueEntryProcessing", |
| | | String.valueOf(continueEntryProcessing)); |
| | | |
| | | this.continueEntryProcessing = continueEntryProcessing; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Retrieves a string representation of this post-response plugin |
| | | * result. |
| | | * |