Package org.nimbustools.ctxbroker.service

Examples of org.nimbustools.ctxbroker.service.ContextBrokerHomeImpl


    protected static ContextBrokerHomeImpl discoverHome() throws Exception {
        InitialContext ctx = null;
        try {
            ctx = new InitialContext();
            final ContextBrokerHomeImpl home =
                    (ContextBrokerHomeImpl) ctx.lookup(
                            ContextBrokerServiceImpl.CONTEXTUALIZATION_HOME);
            if (home == null) {
                throw new Exception("null from JNDI for ContextBrokerHome (?)");
            }
View Full Code Here

TOP

Related Classes of org.nimbustools.ctxbroker.service.ContextBrokerHomeImpl

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.