Examples of AxisEvent


Examples of org.apache.axis2.engine.AxisEvent

     * @throws AxisFault if there's a problem engaging
     */
    public void engageModule(AxisModule axisModule) throws AxisFault {
        engageModule(axisModule, this);
        AxisConfiguration config = getAxisConfiguration();
        config.notifyObservers(new AxisEvent(AxisEvent.MODULE_ENGAGED , this) , axisModule);
    }
View Full Code Here

Examples of org.apache.axis2.engine.AxisEvent

            engagedModules.remove(module.getArchiveName());
            /**
             * if a Disengaged module belogs to an AxisService or an Operation
             * notify with a serviceUpdate
             */
            getAxisConfiguration().notifyObservers(new AxisEvent(AxisEvent.MODULE_DISENGAGED, this), module);
        }
    }
View Full Code Here

Examples of org.apache.axis2.engine.AxisEvent

    public void removeService(String name) throws AxisFault {
        AxisService service = getService(name);

        if (service != null) {
            getAxisConfiguration().notifyObservers(new AxisEvent(AxisEvent.SERVICE_REMOVE,service),
                    service);
        }

        removeChild(name);
    }
View Full Code Here

Examples of org.apache.axis2.engine.AxisEvent

    public void removeService(String name) throws AxisFault {
        AxisService service = getService(name);

        if (service != null) {
            getAxisConfiguration().notifyObservers(new AxisEvent(AxisEvent.SERVICE_REMOVE,service),
                    service);
        }

        removeChild(name);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.