~ubuntu-branches/ubuntu/precise/tomcat7/precise-proposed

« back to all changes in this revision

Viewing changes to modules/jdbc-pool/src/test/java/org/apache/tomcat/jdbc/test/driver/Driver.java

  • Committer: Bazaar Package Importer
  • Author(s): tony mancill
  • Date: 2011-07-25 22:58:33 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110725225833-1t773ak3y3g9utm2
Tags: 7.0.19-1
* Team upload.
* New upstream release.
  - Includes fix for CVE-2011-2526 (Closes: #634992)
* Remove patch for CVE-2011-2204 (included upstream).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 *  contributor license agreements.  See the NOTICE file distributed with
 
4
 *  this work for additional information regarding copyright ownership.
 
5
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 *  (the "License"); you may not use this file except in compliance with
 
7
 *  the License.  You may obtain a copy of the License at
 
8
 *
 
9
 *      http://www.apache.org/licenses/LICENSE-2.0
 
10
 *
 
11
 *  Unless required by applicable law or agreed to in writing, software
 
12
 *  distributed under the License is distributed on an "AS IS" BASIS,
 
13
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 *  See the License for the specific language governing permissions and
 
15
 *  limitations under the License.
 
16
 */
 
17
package org.apache.tomcat.jdbc.test.driver;
 
18
 
 
19
import java.sql.Connection;
 
20
import java.sql.DriverManager;
 
21
import java.sql.DriverPropertyInfo;
 
22
import java.sql.SQLException;
 
23
import java.util.Properties;
 
24
import java.util.concurrent.atomic.AtomicInteger;
 
25
 
 
26
public class Driver implements java.sql.Driver {
 
27
    public static final String url = "jdbc:tomcat:test";
 
28
    public static final AtomicInteger connectCount = new AtomicInteger(0);
 
29
    public static final AtomicInteger disconnectCount = new AtomicInteger(0);
 
30
 
 
31
    public static void reset() {
 
32
        connectCount.set(0);
 
33
        disconnectCount.set(0);
 
34
    }
 
35
    
 
36
    static {
 
37
        try {
 
38
            DriverManager.registerDriver(new Driver());
 
39
        }catch (Exception x) {
 
40
            x.printStackTrace();
 
41
            throw new RuntimeException(x);
 
42
        }
 
43
    }
 
44
    
 
45
    public Driver() {
 
46
    }
 
47
    
 
48
    public boolean acceptsURL(String url) throws SQLException {
 
49
        return url!=null && url.equals(Driver.url);
 
50
    }
 
51
 
 
52
    public Connection connect(String url, Properties info) throws SQLException {
 
53
        connectCount.addAndGet(1);
 
54
        return new org.apache.tomcat.jdbc.test.driver.Connection(info);
 
55
    }
 
56
 
 
57
    public int getMajorVersion() {
 
58
        return 0;
 
59
    }
 
60
 
 
61
    public int getMinorVersion() {
 
62
        return 0;
 
63
    }
 
64
 
 
65
    public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException {
 
66
        return null;
 
67
    }
 
68
 
 
69
    public boolean jdbcCompliant() {
 
70
        return false;
 
71
    }
 
72
}