net.segoia.scriptdao.constants.DataSourceConfigParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of script-dao Show documentation
Show all versions of script-dao Show documentation
Library to support dynamic command generation based on Apache Velocity templates
/**
* script-dao - Library to support dynamic command generation based on Apache Velocity templates
* Copyright (C) 2009 Adrian Cristian Ionescu - https://github.com/acionescu
*
* Licensed 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 net.segoia.scriptdao.constants;
public class DataSourceConfigParameters {
public static final String USERNAME = "USERNAME";
public static final String PASSWORD = "PASSWORD";
public static final String HOST = "HOST";
public static final String PORT = "PORT";
public static final String DRIVER_CLASS = "DRIVER_CLASS";
public static final String SCHEMA_NAME = "SCHEMA_NAME";
public static final String DATABASE_TYPE = "DATABASE_TYPE";
public static final String DATABASE_URL_NAME = "DATABASE_URL_NAME";
public static final String URL_SEPARATOR = "URL_SEPARATOR";
public static final String DATA_ACCESS_COMPONENT_PARAMS = "DATA_ACCESS_COMPONENT_PARAMS";
public static final String COMMAND_CONTENT = "COMMAND_CONTENT";
// HTTP
public static final String USER_AGENT = "USER_AGENT";
public static final String MAX_TOTAL_CONNECTIONS = "MAX_TOTAL_CONNECTIONS";
public static final String CONNECTION_TIMEOUT = "CONNECTION_TIMEOUT";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy