Interface DataSourceFactory

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static String DSFACTORY_KEY
      Key for the configuration which contains DataSourceFactories
      static String FACTORY_KEY
      Key for the configuration which contains the fully qualified name of the factory implementation class
    • Field Detail

      • DSFACTORY_KEY

        static final String DSFACTORY_KEY
        Key for the configuration which contains DataSourceFactories
        See Also:
        Constant Field Values
      • FACTORY_KEY

        static final String FACTORY_KEY
        Key for the configuration which contains the fully qualified name of the factory implementation class
        See Also:
        Constant Field Values
    • Method Detail

      • initialize

        void initialize​(org.apache.commons.configuration2.Configuration configuration)
                 throws TorqueException
        Initialize the factory.
        Parameters:
        configuration - where to load the factory settings from
        Throws:
        TorqueException - Any exceptions caught during processing will be rethrown wrapped into a TorqueException.
      • close

        void close()
            throws TorqueException
        A hook which is called when the resources of the associated DataSource can be released. After close() is called, the other methods may not work any more (e.g. getDataSource() might return null). It is not guaranteed that this method does anything. For example, we do not want to close connections retrieved via JNDI, so the JndiDataSouurceFactory does not close these connections
        Throws:
        TorqueException - Any exceptions caught during processing will be rethrown wrapped into a TorqueException.