Examples of TargetServiceObserver


Examples of org.wso2.carbon.discovery.TargetServiceObserver

     * service discovery.
     *
     * @param axisConf AxisConfiguration instance
     */
    public static void registerServiceObserver(AxisConfiguration axisConf) {
        TargetServiceObserver targetServiceObserver = new TargetServiceObserver();
        targetServiceObserver.init(axisConf);
        // Add as the first observer
        // This is to ensure that other observers (namely DeploymentInterceptor) cannot
        // mess things up for us
        axisConf.getObserversList().add(0, targetServiceObserver);
    }
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.