View Javadoc
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.commons.dbcp2;
18  
19  import java.sql.SQLException;
20  
21  /**
22   * Defines the attributes and methods that will be exposed via JMX for {@link PoolableConnection} instances.
23   *
24   * @since 2.0
25   */
26  public interface PoolableConnectionMXBean {
27  
28      void clearCachedState();
29  
30      void clearWarnings() throws SQLException;
31  
32      void close() throws SQLException;
33  
34      boolean getAutoCommit() throws SQLException;
35  
36      boolean getCacheState();
37  
38      String getCatalog() throws SQLException;
39  
40      int getHoldability() throws SQLException;
41  
42      String getSchema() throws SQLException;
43  
44      String getToString();
45  
46      int getTransactionIsolation() throws SQLException;
47  
48      boolean isClosed() throws SQLException;
49  
50      boolean isReadOnly() throws SQLException;
51  
52      void reallyClose() throws SQLException;
53  
54      void setAutoCommit(boolean autoCommit) throws SQLException;
55  
56      void setCacheState(boolean cacheState);
57  
58      void setCatalog(String catalog) throws SQLException;
59  
60      void setHoldability(int holdability) throws SQLException;
61  
62      void setReadOnly(boolean readOnly) throws SQLException;
63  
64      void setSchema(String schema) throws SQLException;
65  
66      void setTransactionIsolation(int level) throws SQLException;
67  }