| | |
| | | public void initializeIdentityMapper(ConfigEntry configEntry) |
| | | throws ConfigException, InitializationException |
| | | { |
| | | |
| | | |
| | | configEntryDN = configEntry.getDN(); |
| | | |
| | | |
| | |
| | | */ |
| | | public void finalizeIdentityMapper() |
| | | { |
| | | |
| | | |
| | | // Deregister with the server as a configurable component. |
| | | DirectoryServer.deregisterConfigurableComponent(this); |
| | | } |
| | |
| | | public Entry getEntryForID(String id) |
| | | throws DirectoryException |
| | | { |
| | | |
| | | |
| | | // Get the attribute type and base DN arrays as local variables to protect |
| | | // against concurrent modifications. |
| | | String[] matchAttrs = rawMatchAttributes; |
| | |
| | | */ |
| | | public DN getConfigurableComponentEntryDN() |
| | | { |
| | | |
| | | return configEntryDN; |
| | | } |
| | | |
| | |
| | | */ |
| | | public List<ConfigAttribute> getConfigurationAttributes() |
| | | { |
| | | |
| | | |
| | | LinkedList<ConfigAttribute> attrList = new LinkedList<ConfigAttribute>(); |
| | | |
| | | String[] attrs = rawMatchAttributes; |
| | |
| | | public boolean hasAcceptableConfiguration(ConfigEntry configEntry, |
| | | List<String> unacceptableReasons) |
| | | { |
| | | |
| | | |
| | | boolean configAcceptable = true; |
| | | |
| | | |
| | |
| | | public ConfigChangeResult applyNewConfiguration(ConfigEntry configEntry, |
| | | boolean detailedResults) |
| | | { |
| | | |
| | | |
| | | ResultCode resultCode = ResultCode.SUCCESS; |
| | | boolean adminActionRequired = false; |
| | | ArrayList<String> messages = new ArrayList<String>(); |