| | |
| | | */ |
| | | public PluginResult.Startup doStartup() |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), PluginType.STARTUP.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.STARTUP.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | */ |
| | | public void doShutdown(LocalizableMessage reason) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), PluginType.SHUTDOWN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.SHUTDOWN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostConnect doPostConnect(ClientConnection |
| | | clientConnection) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), PluginType.POST_CONNECT.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_CONNECT.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | DisconnectReason disconnectReason, |
| | | LocalizableMessage message) |
| | | { |
| | | LocalizableMessage msg = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_DISCONNECT.getName()); |
| | | throw new UnsupportedOperationException(msg.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_DISCONNECT.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.ImportLDIF |
| | | doLDIFImport(LDIFImportConfig importConfig, Entry entry) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), PluginType.LDIF_IMPORT.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.LDIF_IMPORT.getName()).toString()); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public void doLDIFImportEnd(LDIFImportConfig importConfig) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), |
| | | PluginType.LDIF_IMPORT_END.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.LDIF_IMPORT_END.getName()).toString()); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public void doLDIFImportBegin(LDIFImportConfig importConfig) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), |
| | | PluginType.LDIF_IMPORT_BEGIN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.LDIF_IMPORT_BEGIN.getName()).toString()); |
| | | } |
| | | |
| | | /** |
| | |
| | | public PluginResult.ImportLDIF |
| | | doLDIFExport(LDIFExportConfig exportConfig, Entry entry) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), PluginType.LDIF_EXPORT.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.LDIF_EXPORT.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseAbandonOperation abandonOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_ABANDON.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_ABANDON.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationAbandonOperation abandonOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_ABANDON.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_ABANDON.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseAddOperation addOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), PluginType.PRE_PARSE_ADD.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_ADD.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationAddOperation addOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_ADD.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_ADD.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationAddOperation addOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_ADD.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_ADD.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseAddOperation addOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_ADD.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_ADD.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public void doPostSynchronization( |
| | | PostSynchronizationAddOperation addOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_SYNCHRONIZATION_ADD.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_SYNCHRONIZATION_ADD.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseBindOperation bindOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_BIND.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_BIND.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationBindOperation bindOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_BIND.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_BIND.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationBindOperation bindOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_BIND.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_BIND.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseBindOperation bindOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_BIND.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_BIND.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseCompareOperation compareOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_COMPARE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_COMPARE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationCompareOperation compareOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_COMPARE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_COMPARE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationCompareOperation compareOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_COMPARE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_COMPARE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseCompareOperation compareOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_COMPARE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_COMPARE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseDeleteOperation deleteOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_DELETE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_DELETE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationDeleteOperation deleteOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_DELETE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_DELETE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationDeleteOperation deleteOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_DELETE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_DELETE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseDeleteOperation deleteOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_DELETE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_DELETE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public void doPostSynchronization( |
| | | PostSynchronizationDeleteOperation deleteOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_SYNCHRONIZATION_DELETE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_SYNCHRONIZATION_DELETE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseExtendedOperation extendedOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_EXTENDED.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_EXTENDED.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationExtendedOperation extendedOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_EXTENDED.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_EXTENDED.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | doPostOperation(PostOperationExtendedOperation |
| | | extendedOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_EXTENDED.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_EXTENDED.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseExtendedOperation extendedOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_EXTENDED.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_EXTENDED.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseModifyOperation modifyOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_MODIFY.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_MODIFY.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationModifyOperation modifyOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_MODIFY.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_MODIFY.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationModifyOperation modifyOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_MODIFY.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_MODIFY.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseModifyOperation modifyOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_MODIFY.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_MODIFY.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public void doPostSynchronization( |
| | | PostSynchronizationModifyOperation modifyOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_SYNCHRONIZATION_MODIFY.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_SYNCHRONIZATION_MODIFY.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseModifyDNOperation modifyDNOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_MODIFY_DN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_MODIFY_DN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationModifyDNOperation modifyDNOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_MODIFY_DN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_MODIFY_DN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | Entry oldEntry, Entry newEntry, |
| | | List<Modification> modifications) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), |
| | | PluginType.SUBORDINATE_MODIFY_DN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.SUBORDINATE_MODIFY_DN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | processSubordinateDelete(DeleteOperation |
| | | deleteOperation, Entry entry) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | String.valueOf(pluginDN), |
| | | PluginType.SUBORDINATE_MODIFY_DN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.SUBORDINATE_MODIFY_DN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | doPostOperation(PostOperationModifyDNOperation |
| | | modifyDNOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_MODIFY_DN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_MODIFY_DN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseModifyDNOperation modifyDNOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_MODIFY_DN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_MODIFY_DN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public void doPostSynchronization( |
| | | PostSynchronizationModifyDNOperation modifyDNOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_SYNCHRONIZATION_MODIFY_DN.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_SYNCHRONIZATION_MODIFY_DN.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseSearchOperation searchOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_SEARCH.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_SEARCH.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreOperation |
| | | doPreOperation(PreOperationSearchOperation searchOperation) |
| | | throws CanceledOperationException { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_OPERATION_SEARCH.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_OPERATION_SEARCH.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | processSearchEntry(SearchEntrySearchOperation searchOperation, |
| | | SearchResultEntry searchEntry) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.SEARCH_RESULT_ENTRY.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.SEARCH_RESULT_ENTRY.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | searchOperation, |
| | | SearchResultReference searchReference) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.SEARCH_RESULT_REFERENCE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.SEARCH_RESULT_REFERENCE.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationSearchOperation searchOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_SEARCH.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_SEARCH.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostResponse |
| | | doPostResponse(PostResponseSearchOperation searchOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_RESPONSE_SEARCH.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_RESPONSE_SEARCH.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PreParse |
| | | doPreParse(PreParseUnbindOperation unbindOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.PRE_PARSE_UNBIND.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.PRE_PARSE_UNBIND.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | public PluginResult.PostOperation |
| | | doPostOperation(PostOperationUnbindOperation unbindOperation) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.POST_OPERATION_UNBIND.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.POST_OPERATION_UNBIND.getName()).toString()); |
| | | } |
| | | |
| | | |
| | |
| | | processIntermediateResponse( |
| | | IntermediateResponse intermediateResponse) |
| | | { |
| | | LocalizableMessage message = ERR_PLUGIN_TYPE_NOT_SUPPORTED. |
| | | get(String.valueOf(pluginDN), |
| | | PluginType.INTERMEDIATE_RESPONSE.getName()); |
| | | throw new UnsupportedOperationException(message.toString()); |
| | | throw new UnsupportedOperationException(ERR_PLUGIN_TYPE_NOT_SUPPORTED.get( |
| | | pluginDN, PluginType.INTERMEDIATE_RESPONSE.getName()).toString()); |
| | | } |
| | | } |
| | | |