| | |
| | | |
| | | package org.opends.server.backends.persistit; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.forgerock.i18n.LocalizableMessage; |
| | | import org.forgerock.opendj.config.server.ConfigException; |
| | | import org.opends.server.admin.std.server.PersistitBackendCfg; |
| | | import org.opends.server.backends.pluggable.BackendImpl; |
| | |
| | | public final class PitBackend extends BackendImpl<PersistitBackendCfg> |
| | | { |
| | | @Override |
| | | public boolean isConfigurationAcceptable(PersistitBackendCfg cfg, List<LocalizableMessage> unacceptableReasons) |
| | | { |
| | | return PersistItStorage.isConfigurationAcceptable(cfg, unacceptableReasons, serverContext); |
| | | } |
| | | |
| | | @Override |
| | | protected Storage configureStorage(PersistitBackendCfg cfg) throws ConfigException |
| | | { |
| | | return new PersistItStorage(cfg, serverContext); |