Package org.jacorb.test.orb

Source Code of org.jacorb.test.orb.IIOPAddressInterceptor

package org.jacorb.test.orb;

import java.util.*;

import org.omg.CORBA.*;
import org.omg.IOP.*;
import org.omg.PortableInterceptor.IORInfo;
import org.omg.PortableInterceptor.IORInterceptor;

import org.jacorb.orb.iiop.IIOPAddress;

/**
* An IOR Interceptor that adds alternate addresses to IIOP Profiles.
*
* @author Andre Spiegel
* @version $Id: IIOPAddressInterceptor.java,v 1.3 2005/09/27 20:57:22 phil.mesnier Exp $
*/
public class IIOPAddressInterceptor
    extends LocalObject
    implements IORInterceptor
{
  public static List alternateAddresses = new ArrayList();
 
    public void establish_components(IORInfo info)
    {
    for (Iterator i = alternateAddresses.iterator(); i.hasNext();)
    {
      IIOPAddress addr = (IIOPAddress)i.next();
      info.add_ior_component_to_profile
      (
        new TaggedComponent
        (
          TAG_ALTERNATE_IIOP_ADDRESS.value,
          addr.toCDR()
        ),
        TAG_INTERNET_IOP.value
      );
    }
    }

    public String name()
    {
    return "IIOPAddressInterceptor";
    }

    public void destroy()
    {
    alternateAddresses.clear();
    }

}
TOP

Related Classes of org.jacorb.test.orb.IIOPAddressInterceptor

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.