blob: 24c706ba39ee0981bae1d0307d9fe51be710a325 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.sessions;
import java.util.*;
import java.sql.*;
import java.io.*;
/**
* <b>Purpose</b>:
* Define an interface for supplying TopLink with a <code>Connection</code> to
* a JDBC database.
* <p>
* <b>Description</b>:
* This interface defines the methods to be implemented that allow TopLink to
* acquire a <code>Connection</code> to a JDBC database. There are only 2
* methods that need to be implemented:
* <blockquote><code>
* java.sql.Connection connect(java.util.Properties properties)<br>
* void toString(java.io.PrintWriter writer)
* </code></blockquote>
* Once these methods have been implemented, an instance of the new
* <code>Connector</code> can be passed
* to a <code>JDBCLogin</code> at startup. For example:
* <blockquote><code>
* session.getLogin().setConnector(new FooConnector());<br>
* session.login();
* </code></blockquote>
*
* @see DatabaseLogin
* @author Big Country
* @since TOPLink/Java 2.1
*/
public interface Connector extends Serializable, Cloneable {
/**
* INTERNAL:
* Must be cloneable.
*/
Object clone();
/**
* INTERNAL:
* Connect with the specified properties and return the <code>Connection</code>.
* The properties are driver-specific; but usually contain the <code>"user"</code>
* and <code>"password"</code>. Additional
* properties can be built by using <code>JDBCLogin.setProperty(String propertyName,
* Object propertyValue)</code>.
* @return java.sql.Connection
*/
Connection connect(Properties properties, Session session);
/**
* INTERNAL:
* Print something useful on the log. This information will be displayed
* on the EclipseLink log (by default <code>System.out</code>) at login.
* See the other implementations of this method for examples.
*/
void toString(PrintWriter writer);
/**
* INTERNAL:
* Provide the details of my connection information. This is primarily for JMX runtime services.
* @return java.lang.String
*/
String getConnectionDetails();
}