| | |
| | | // Indicates whether the server has been bootstrapped. |
| | | private boolean isBootstrapped; |
| | | |
| | | // Indicates whether the server has been bootstrapped for client use. |
| | | private boolean isClientBootstrapped; |
| | | |
| | | // Indicates whether the server is currently online. |
| | | private boolean isRunning; |
| | | |
| | |
| | | { |
| | | environmentConfig = config; |
| | | isBootstrapped = false; |
| | | isClientBootstrapped = false; |
| | | isRunning = false; |
| | | shuttingDown = false; |
| | | lockdownMode = false; |
| | |
| | | { |
| | | synchronized (directoryServer) |
| | | { |
| | | if (directoryServer.isClientBootstrapped) |
| | | { |
| | | return; |
| | | } |
| | | |
| | | |
| | | // Set default values for variables that may be needed during schema |
| | | // processing. |
| | |
| | | { |
| | | checkSchema = true; |
| | | isBootstrapped = false; |
| | | isClientBootstrapped = false; |
| | | isRunning = false; |
| | | lockdownMode = true; |
| | | rejectUnauthenticatedRequests = true; |