/* * 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.openjpa.jdbc.schema; import java.util.List; import java.util.Properties; import javax.sql.DataSource; import org.apache.openjpa.jdbc.sql.DBDictionary; import org.apache.openjpa.lib.jdbc.ConnectionDecorator; /** * A DataSource that allows additional configuration options to be set * into it, so that it can wrap a JDBC driver or other DataSource. * * @author Marc Prud'hommeaux */ public interface DriverDataSource extends DataSource { /** * JDBC URL. */ public void setConnectionURL(String connectionURL); /** * JDBC URL. */ public String getConnectionURL(); /** * Driver class name. */ public void setConnectionDriverName(String connectionDriverName); /** * Driver class name. */ public String getConnectionDriverName(); /** * JDBC user name. */ public void setConnectionUserName(String connectionUserName); /** * JDBC user name. */ public String getConnectionUserName(); /** * JDBC password. */ public void setConnectionPassword(String connectionPassword); /** * JDBC password. */ public void setClassLoader(ClassLoader classLoader); /** * Classloader for loading driver class, etc. */ public ClassLoader getClassLoader(); /** * Configuration of datasource properties. */ public void setConnectionFactoryProperties(Properties props); /** * Configuration of datasource properties. */ public Properties getConnectionFactoryProperties(); /** * Configuration of connection. */ public void setConnectionProperties(Properties props); /** * Configuration of connection. */ public Properties getConnectionProperties(); /** * Provide any built-in decorators; may be null. */ public List<ConnectionDecorator> createConnectionDecorators(); /** * Initialize self and dictionary once available. */ public void initDBDictionary(DBDictionary dict); }