Package com.ericsson.ssa.container.sim

Examples of com.ericsson.ssa.container.sim.ApplicationRouterSelector


            router = ApplicationRouterSelector.findSPIRouter(clazz, loader);
            if (router == null) {
                theirLog.log(Level.SEVERE, LOGPREFIX + "failed_loading_ar", "provider not found");
                return false;
            }
            ApplicationRouterSelector ad = ApplicationRouterSelector.getInstance();

            if (theirLog.isLoggable(Level.FINEST)) {
                theirLog.log(Level.FINEST, LOGPREFIX + "ad_reference", ad);

                theirLog.log(Level.FINEST, LOGPREFIX + "ad_classloader: ",
                    ad.getClass().getClassLoader());
            }
            String moduleName = aDescriptor.getModuleName();
            ad.setCustomApplicationRouter(moduleName, router, props);
        }
        catch (Exception e) {
            theirLog.log(Level.SEVERE, LOGPREFIX + "failed_loading_ar",
                e);
        }
View Full Code Here


        throws Exception {
        if (theirLog.isLoggable(Level.FINEST)) {
            theirLog.log(Level.FINEST, LOGPREFIX + "unloading");
        }

        ApplicationRouterSelector ad = ApplicationRouterSelector.getInstance();
        if (theirLog.isLoggable(Level.FINEST)) {
            theirLog.log(Level.FINEST, LOGPREFIX + "ad_reference", ad);
        }
        return ad.unsetCustomApplicationRouter(aDescriptor.getModuleName());
    }
View Full Code Here

TOP

Related Classes of com.ericsson.ssa.container.sim.ApplicationRouterSelector

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.