Class DataSourceLinkFactory.DataSourceHandler

java.lang.Object
org.apache.naming.factory.DataSourceLinkFactory.DataSourceHandler
All Implemented Interfaces:
InvocationHandler
Enclosing class:
DataSourceLinkFactory

public static class DataSourceLinkFactory.DataSourceHandler extends Object implements InvocationHandler
Simple wrapper class that will allow a user to configure a ResourceLink for a data source so that when DataSource.getConnection() is called, it will invoke DataSource.getConnection(String, String) with the preconfigured username and password.
  • Constructor Details

    • DataSourceHandler

      public DataSourceHandler(DataSource ds, String username, String password) throws Exception
      Construct a DataSourceHandler for the given DataSource and credentials.
      Parameters:
      ds - The DataSource to wrap
      username - The username to use on getConnection
      password - The password to use on getConnection
      Throws:
      Exception - if the getConnection method cannot be found
  • Method Details