| | |
| | | import org.opends.server.core.DirectoryServer; |
| | | |
| | | /** |
| | | * |
| | | * This fixture makes sure that a minimal directory server instance is |
| | | * available. Only one initialization task is performed: the directory |
| | | * server instance is created and has its |
| | |
| | | * A factory used to obtain the initial directory server fixture |
| | | * instance. |
| | | */ |
| | | @Deprecated |
| | | public static final FixtureFactory<InitialDirectoryServerFixture> FACTORY; |
| | | |
| | | static { |
| | |
| | | /** |
| | | * Internal factory implementation. |
| | | */ |
| | | @Deprecated |
| | | private static final class Factory implements |
| | | FixtureFactory<InitialDirectoryServerFixture> { |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | @Deprecated |
| | | public InitialDirectoryServerFixture setUp() throws Exception { |
| | | // Make sure a new instance is created. |
| | | // |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | @Deprecated |
| | | public void tearDown() throws Exception { |
| | | // No implementation required - no way to finalize the directory |
| | | // server instance. |