Package com.sun.enterprise.admin.event

Examples of com.sun.enterprise.admin.event.ApplicationDeployEvent


    protected void multicastAdminEvent(String entityName, String actionCode,
        String eventModuleType) {
        String instanceName = super.getServerInstanceName();
        AdminEvent event;
        if (eventModuleType.equals(BaseDeployEvent.APPLICATION)) {
            event = new ApplicationDeployEvent(instanceName, entityName,
                actionCode);
        } else {
            event = new ModuleDeployEvent(instanceName, entityName,
                eventModuleType, actionCode);
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.event.ApplicationDeployEvent

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.