| | |
| | | */ |
| | | public SynchronizationProviderConfigManager() |
| | | { |
| | | |
| | | // No implementation is required. |
| | | } |
| | | |
| | |
| | | public void initializeSynchronizationProviders() |
| | | throws ConfigException, InitializationException |
| | | { |
| | | |
| | | |
| | | registeredProviders = new ConcurrentHashMap<DN,SynchronizationProvider>(); |
| | | |
| | | |
| | |
| | | public boolean configChangeIsAcceptable(ConfigEntry configEntry, |
| | | StringBuilder unacceptableReason) |
| | | { |
| | | |
| | | |
| | | DN providerDN = configEntry.getDN(); |
| | | SynchronizationProvider provider = registeredProviders.get(providerDN); |
| | | |
| | |
| | | */ |
| | | public ConfigChangeResult applyConfigurationChange(ConfigEntry configEntry) |
| | | { |
| | | |
| | | |
| | | DN providerDN = configEntry.getDN(); |
| | | SynchronizationProvider provider = registeredProviders.get(providerDN); |
| | | ResultCode resultCode = ResultCode.SUCCESS; |
| | |
| | | public boolean configAddIsAcceptable(ConfigEntry configEntry, |
| | | StringBuilder unacceptableReason) |
| | | { |
| | | |
| | | |
| | | // NYI |
| | | return true; |
| | | } |
| | |
| | | */ |
| | | public ConfigChangeResult applyConfigurationAdd(ConfigEntry configEntry) |
| | | { |
| | | |
| | | |
| | | // NYI |
| | | return null; |
| | | } |
| | |
| | | public boolean configDeleteIsAcceptable(ConfigEntry configEntry, |
| | | StringBuilder unacceptableReason) |
| | | { |
| | | |
| | | |
| | | // NYI |
| | | return true; |
| | | } |
| | |
| | | */ |
| | | public ConfigChangeResult applyConfigurationDelete(ConfigEntry configEntry) |
| | | { |
| | | |
| | | |
| | | // NYI |
| | | return null; |
| | | } |