jdk/src/java.sql/share/classes/javax/sql/DataSource.java
changeset 40533 ec047f91988e
parent 40409 564ea8deef3c
equal deleted inserted replaced
40532:6eb2dc8dffde 40533:ec047f91988e
   107    * @since 1.4
   107    * @since 1.4
   108    */
   108    */
   109   Connection getConnection(String username, String password)
   109   Connection getConnection(String username, String password)
   110     throws SQLException;
   110     throws SQLException;
   111 
   111 
       
   112   /**
       
   113    * {@inheritDoc}
       
   114    * @since 1.4
       
   115    */
       
   116   @Override
       
   117   java.io.PrintWriter getLogWriter() throws SQLException;
       
   118 
       
   119   /**
       
   120    * {@inheritDoc}
       
   121    * @since 1.4
       
   122    */
       
   123   @Override
       
   124   void setLogWriter(java.io.PrintWriter out) throws SQLException;
       
   125 
       
   126   /**
       
   127    * {@inheritDoc}
       
   128    * @since 1.4
       
   129    */
       
   130   @Override
       
   131   void setLoginTimeout(int seconds) throws SQLException;
       
   132 
       
   133   /**
       
   134    * {@inheritDoc}
       
   135    * @since 1.4
       
   136    */
       
   137   @Override
       
   138   int getLoginTimeout() throws SQLException;
       
   139 
   112   // JDBC 4.3
   140   // JDBC 4.3
   113 
   141 
   114   /**
   142   /**
   115    * Create a new {@code ConnectionBuilder} instance
   143    * Create a new {@code ConnectionBuilder} instance
   116    * @implSpec
   144    * @implSpec