| | |
| | | import org.opends.server.types.*; |
| | | import org.opends.server.util.CertificateManager; |
| | | import org.opends.server.util.SetupUtils; |
| | | import org.opends.server.util.Validator; |
| | | import org.forgerock.util.Reject; |
| | | |
| | | |
| | | |
| | |
| | | @Override() |
| | | public void configureBackend(Configuration config) throws ConfigException |
| | | { |
| | | Validator.ensureNotNull(config); |
| | | Validator.ensureTrue(config instanceof TrustStoreBackendCfg); |
| | | Reject.ifNull(config); |
| | | Reject.ifFalse(config instanceof TrustStoreBackendCfg); |
| | | |
| | | configuration = (TrustStoreBackendCfg)config; |
| | | } |