| | |
| | | import java.util.Set; |
| | | |
| | | import org.forgerock.i18n.LocalizableMessage; |
| | | import org.forgerock.opendj.server.config.server.PluginCfg; |
| | | import org.forgerock.opendj.config.server.ConfigException; |
| | | import org.forgerock.opendj.ldap.DN; |
| | | import org.forgerock.opendj.server.config.server.PluginCfg; |
| | | import org.opends.server.core.DirectoryServer; |
| | | import org.opends.server.types.InitializationException; |
| | | |
| | |
| | | public abstract class InternalDirectoryServerPlugin extends |
| | | DirectoryServerPlugin<PluginCfg> |
| | | { |
| | | |
| | | /** |
| | | * Creates a new internal directory server plugin using the provided |
| | | * component name and plugin types. |
| | |
| | | invokeForInternalOps); |
| | | } |
| | | |
| | | |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public final void initializePlugin(Set<PluginType> pluginTypes, |
| | | PluginCfg configuration) throws ConfigException, |
| | | InitializationException |
| | |
| | | // Unused. |
| | | } |
| | | |
| | | |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public final boolean isConfigurationAcceptable( |
| | | PluginCfg configuration, List<LocalizableMessage> unacceptableReasons) |
| | | { |
| | | // Unused. |
| | | return true; |
| | | } |
| | | |
| | | } |