Package com.sun.enterprise.ee.admin.hadbmgmt

Examples of com.sun.enterprise.ee.admin.hadbmgmt.HADBConfigurePersistenceInfo


        {
            getLogger().log(Level.INFO, "HADBConfigMBean.configureHAPersistence() called with " +
                "type = " + type + ", frequency = " + frequency + ", scope = " + scope +", store = " +
                store + ", clusterName = " + clusterName + ", props = " + props);
           
            HADBConfigurePersistenceInfo info = new HADBConfigurePersistenceInfo(
                clusterName, getLogger(), getConfigContext(),
                getMBeanServer(), type, frequency, scope, store, props);
            info.setup();
           
            HADBConfigurePersistence worker = new HADBConfigurePersistence(info);
            return worker.commit();
        }
        catch(HADBSetupException hse)
View Full Code Here

TOP

Related Classes of com.sun.enterprise.ee.admin.hadbmgmt.HADBConfigurePersistenceInfo

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.