Package com.sun.enterprise.ee.synchronization

Examples of com.sun.enterprise.ee.synchronization.SynchronizationMBean


     *                                     execution of this command
     */
    public void execute() throws AuditException {

        try {           
            SynchronizationMBean proxy = (SynchronizationMBean)
                MBeanServerProxy.getMBeanServerProxy(
                    SynchronizationMBean.class,
                    new ObjectName(MBEAN_NAME), _connInfo);

            _result = proxy.audit(_requests);           

        } catch (Exception e) {
            String msg = _localStrMgr.getString("fileRetrieveError",
                            _requests[0].getMetaFileName());
            throw new AuditException(msg, e);
View Full Code Here

TOP

Related Classes of com.sun.enterprise.ee.synchronization.SynchronizationMBean

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.