blob: 528432a0695215d7942f4373978f8bad768d9482 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.airavata.registry.core.utils;
import org.apache.airavata.common.exception.ApplicationSettingsException;
import org.apache.airavata.common.utils.JDBCConfig;
import org.apache.airavata.common.utils.ServerSettings;
public class ReplicaCatalogJDBCConfig implements JDBCConfig {
private static final String REPLICA_CATALOG_JDBC_DRIVER = "replicacatalog.jdbc.driver";
private static final String REPLICA_CATALOG_JDBC_URL = "replicacatalog.jdbc.url";
private static final String REPLICA_CATALOG_JDBC_USER = "replicacatalog.jdbc.user";
private static final String REPLICA_CATALOG_JDBC_PASSWORD = "replicacatalog.jdbc.password";
private static final String REPLICA_CATALOG_VALIDATION_QUERY = "replicacatalog.validationQuery";
@Override
public String getURL() {
return readServerProperties(REPLICA_CATALOG_JDBC_URL);
}
@Override
public String getDriver() {
return readServerProperties(REPLICA_CATALOG_JDBC_DRIVER);
}
@Override
public String getUser() {
return readServerProperties(REPLICA_CATALOG_JDBC_USER);
}
@Override
public String getPassword() {
return readServerProperties(REPLICA_CATALOG_JDBC_PASSWORD);
}
@Override
public String getValidationQuery() {
return readServerProperties(REPLICA_CATALOG_VALIDATION_QUERY);
}
private String readServerProperties(String propertyName) {
try {
return ServerSettings.getSetting(propertyName);
} catch (ApplicationSettingsException e) {
throw new RuntimeException("Unable to read airavata-server.properties...", e);
}
}
}