blob: 7a74402c625a26e7eff8f7338bbb4e2a7762646a [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 WorkflowCatalogJDBCConfig implements JDBCConfig {
private static final String WORKFLOW_CATALOG_JDBC_DRIVER = "workflowcatalog.jdbc.driver";
private static final String WORKFLOW_CATALOG_JDBC_URL = "workflowcatalog.jdbc.url";
private static final String WORKFLOW_CATALOG_JDBC_USER = "workflowcatalog.jdbc.user";
private static final String WORKFLOW_CATALOG_JDBC_PASSWORD = "workflowcatalog.jdbc.password";
private static final String WORKFLOW_CATALOG_VALIDATION_QUERY = "workflowcatalog.validationQuery";
@Override
public String getURL() {
return readServerProperties(WORKFLOW_CATALOG_JDBC_URL);
}
@Override
public String getDriver() {
return readServerProperties(WORKFLOW_CATALOG_JDBC_DRIVER);
}
@Override
public String getUser() {
return readServerProperties(WORKFLOW_CATALOG_JDBC_USER);
}
@Override
public String getPassword() {
return readServerProperties(WORKFLOW_CATALOG_JDBC_PASSWORD);
}
@Override
public String getValidationQuery() {
return readServerProperties(WORKFLOW_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);
}
}
}