Package com.sun.enterprise.admin.server.core

Examples of com.sun.enterprise.admin.server.core.AdminNotificationHelper


                                                                               
        if (ctx.isChanged()) {
            ctx.flush();
        }
                                                                               
        new AdminNotificationHelper(adminContext).sendNotification();
    }
View Full Code Here


                deleteConnectorDependentResources(req.getName(),
                    target.getName());
                deploymentCtx.getConfigContext().flush();
                AdminContext adminContext =
                        AdminService.getAdminService().getAdminContext();
                new AdminNotificationHelper(adminContext).sendNotification();
            }
        } catch(Throwable t){
            status.setStageStatus(DeploymentStatus.WARNING);
            status.setStageException(t);
            status.setStageStatusMessage(t.getMessage());
View Full Code Here

        mDebug  = new AMXDebugHelper( "__FlushConfigHook__" );
        mSuppliedMBeanServer    = null;
        mDelegateMBeanServer    = null;
       
        mAdminContext   = adminContext;
        mAdminNotificationHelper = new AdminNotificationHelper( mAdminContext );
        //mLogger = LogDomains.getLogger(AdminConstants.kLoggerName);
       
        mDebug.setEchoToStdOut( false );
        debug( "FlushConfigHook created OK" );
    }
View Full Code Here

            configs.addConfig(newConfig, OVERWRITE);
            try {
                ConfigContext ctx = getConfigContext();
                if (ctx.isChanged())
                    ctx.flush();
                new AdminNotificationHelper(AdminService.getAdminService().getAdminContext()).sendNotification();
            } catch (Exception e) {
            }
        } catch (Exception ex) {
            throw getExceptionHandler().handleConfigException(
                ex, "eeadmin.copyConfiguration.Exception",
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.server.core.AdminNotificationHelper

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.