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

« back to all changes in this revision

Viewing changes to modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/Validator.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.pool;
 
18
 
 
19
import java.sql.Connection;
 
20
 
 
21
/**
 
22
 * Interface to be implemented by custom validator classes.
 
23
 * 
 
24
 * @author mpassell
 
25
 */
 
26
public interface Validator {
 
27
    /**
 
28
     * Validate a connection and return a boolean to indicate if it's valid.
 
29
     * 
 
30
     * @param connection the Connection object to test
 
31
     * @param validateAction the action used. One of {@link PooledConnection#VALIDATE_BORROW},
 
32
     *   {@link PooledConnection#VALIDATE_IDLE}, {@link PooledConnection#VALIDATE_INIT} or
 
33
     *   {@link PooledConnection#VALIDATE_RETURN}
 
34
     * @return true if the connection is valid
 
35
     */
 
36
    public boolean validate(Connection connection, int validateAction);
 
37
}