Package org.jacorb.orb

Examples of org.jacorb.orb.TaggedComponentList


        decode_extensions(protocol_identifier.toLowerCase());
    }

    private void decode_extensions(String ident) throws ConfigurationException
    {
        this.components = new TaggedComponentList();
        if (ident.equals("ssliop"))
        {
            ssl = new SSL();
            ssl.port = (short)primaryAddress.getPort();
            ssl.target_supports = get_ssl_options("jacorb.security.ssl.corbaloc_ssliop.supported_options");
View Full Code Here


        else
        {
            List<String> addresses = Arrays.asList (value.split(","));
            if (!addresses.isEmpty() && components == null)
            {
                components = new TaggedComponentList();
            }
            for (Iterator<String> i = addresses.iterator(); i.hasNext();)
            {
                String addr = i.next();
                IIOPAddress iaddr = new IIOPAddress();
View Full Code Here

    * @throws ConfigurationException
     */
    private void addNetworkAddresses() throws ConfigurationException
    {
        if (primaryAddress == null) return;
        if (components == null) components = new TaggedComponentList();

        String primaryIP = primaryAddress.getIP();
        if ( logger.isDebugEnabled() )
        {
            logger.debug("primaryIP is <" + primaryIP + ">");
View Full Code Here

TOP

Related Classes of org.jacorb.orb.TaggedComponentList

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.