001 /*
002 * $Id: ProxyDriver.java,v 1.14 2014/04/27 19:35:07 oboehm Exp $
003 *
004 * Copyright (c) 2014 by Oliver Boehm
005 *
006 * Licensed under the Apache License, Version 2.0 (the "License");
007 * you may not use this file except in compliance with the License.
008 * You may obtain a copy of the License at
009 *
010 * http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express orimplied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 *
018 * (c)reated 27.03.2014 by oliver (ob@oasd.de)
019 */
020
021 package patterntesting.runtime.db;
022
023 /**
024 * This JDBC driver acts like a proxy between PatternTesting and the real JDBC
025 * driver to be able to monitor JDBC access. It was inspired by the JAMonDriver
026 * of the JAMon framework.
027 * <p>
028 * This driver is registered for JDBC URLs beginning with "<em>jdbc:proxy:</em>
029 * ...". This prefix must follow the real driver path. E.g. if you want to use
030 * HSQL as database your URL make look like
031 * "<em>jdbc:proxy:hsqldb:file:/tmp/oli</em>".
032 * </p>
033 * <p>
034 * This class is moved now to patterntesting.runtime.monitor.db (since 1.4.2).
035 * </p>
036 * <p>
037 * TODO: Will be removed in 1.6.
038 * </p>
039 *
040 * @author oliver
041 * @since 1.4.1 (27.03.2014)
042 * @version $Revision: 1.14 $
043 * @deprecated use {@link patterntesting.runtime.monitor.db.ProxyDriver}
044 */
045 @Deprecated
046 public class ProxyDriver extends patterntesting.runtime.monitor.db.ProxyDriver {
047
048 }
049