BooleanHolder.java:
Forced specifying a default value in the ctor.
Implemented toString().
| | |
| | | |
| | | /** The boolean value held in this class. */ |
| | | boolean value; |
| | | |
| | | /** |
| | | * Default ctor. |
| | | * |
| | | * @param defaultValue |
| | | * the default value for this object |
| | | */ |
| | | public BooleanHolder(boolean defaultValue) |
| | | { |
| | | this.value = defaultValue; |
| | | } |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public String toString() |
| | | { |
| | | return Boolean.toString(this.value); |
| | | } |
| | | } |
| | |
| | | checkIfCanceled(false); |
| | | |
| | | |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(); |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(false); |
| | | processAdd(clientConnection, executePostOpPlugins); |
| | | |
| | | PluginConfigManager pluginConfigManager = |
| | |
| | | checkIfCanceled(false); |
| | | |
| | | |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(); |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(false); |
| | | processCompare(executePostOpPlugins); |
| | | |
| | | // Check for a request to cancel this operation. |
| | |
| | | // Check for a request to cancel this operation. |
| | | checkIfCanceled(false); |
| | | |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(); |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(false); |
| | | processDelete(executePostOpPlugins); |
| | | |
| | | // Invoke the post-operation or post-synchronization delete plugins. |
| | |
| | | // Check for a request to cancel this operation. |
| | | checkIfCanceled(false); |
| | | |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(); |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(false); |
| | | processModifyDN(executePostOpPlugins); |
| | | |
| | | // Invoke the post-operation or post-synchronization modify DN plugins. |
| | |
| | | // Check for a request to cancel this operation. |
| | | checkIfCanceled(false); |
| | | |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(); |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(false); |
| | | processModify(executePostOpPlugins); |
| | | |
| | | // If the password policy request control was included, then make sure we |
| | |
| | | // Check for a request to cancel this operation. |
| | | checkIfCanceled(false); |
| | | |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(); |
| | | BooleanHolder executePostOpPlugins = new BooleanHolder(false); |
| | | processSearch(wfe, executePostOpPlugins); |
| | | |
| | | // Check for a request to cancel this operation. |