this.hostcertsKeyFile = findStringProperty(config, SSL_HOST_KEY_FILE, hostcertsKeyFile);
this.trustedCertsFile = findStringProperty(config, SSL_TRUSTED_CERT_FILE, trustedCertsFile);
this.dbUrl = findStringProperty(config, DBURL, dbUrl);
if (dbUrl == null) {
throw new XregistryException("Database URL for underline database is not defined");
}
this.port = findIntegerProperty(config, XregistryOptions.PORT, 6666);
this.securityEnabled = findBooleanProperty(config, SECURITY_ENABLED, true);
}