Package com.sun.enterprise.naming.java

Examples of com.sun.enterprise.naming.java.javaURLContext


        if (_logger.isLoggable(Level.FINE))
            _logger.fine("SerialContext ==> SerialContext instance created : " + this)

        // using these two temp variables allows instance variables
        // to be 'final'.
        javaURLContext  urlContextTemp = null;
        boolean         isEETemp    = false;
        if (myEnv.get("com.sun.appserv.ee.iiop.endpointslist") != null) {
            isEETemp = true;
            urlContextTemp = new javaURLContext(myEnv, this);
        }
        else {
            urlContextTemp = new javaURLContext(myEnv, null);
        }
        javaUrlContext  = urlContextTemp;
        isEE    = isEETemp;
        orb = (ORB) myEnv.get(ORBManager.JNDI_CORBA_ORB_PROPERTY);
        host = (String)myEnv.get(ORBManager.OMG_ORB_INIT_HOST_PROPERTY);
View Full Code Here

TOP

Related Classes of com.sun.enterprise.naming.java.javaURLContext

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.