Package org.apache.ojb.broker.core

Examples of org.apache.ojb.broker.core.PersistenceBrokerConfiguration


     */
    private static int getSqlInLimit()
    {
        try
        {
            PersistenceBrokerConfiguration config = (PersistenceBrokerConfiguration) PersistenceBrokerFactory
                    .getConfigurator().getConfigurationFor(null);
            return config.getSqlInLimit();
        }
        catch (ConfigurationException e)
        {
            return 200;
        }
View Full Code Here


     */
    private static int getPrefetchInLimit()
    {
        try
        {
            PersistenceBrokerConfiguration config = (PersistenceBrokerConfiguration) PersistenceBrokerFactory.getConfigurator().getConfigurationFor(null);
            return config.getSqlInLimit();
        }
        catch (ConfigurationException e)
        {
            return 200;
        }
View Full Code Here

TOP

Related Classes of org.apache.ojb.broker.core.PersistenceBrokerConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.