org.jacorb.orb.portableInterceptor

Class IORInfoImpl

public class IORInfoImpl extends LocalObject implements IORInfoExt

This class represents the type of info object that will be passed to the IORInterceptors.
See PI Spec p.7-64f

Version: $Id: IORInfoImpl.java,v 1.14 2006/07/07 10:55:57 alphonse.bendt Exp $

Author: Nicolas Noffke

Constructor Summary
IORInfoImpl(ORB orb, POA poa, Map components, Map policy_overrides, List profiles)
Method Summary
voidadd_ior_component(TaggedComponent component)
Adds component to all profiles.
voidadd_ior_component_to_profile(TaggedComponent component, int id)
Adds the component to the profile with the given tag.
voidadd_profile(Profile profile)
This method adds a further profile to an IOR.
Policyget_effective_policy(int type)
intget_number_of_profiles(int tag)
This method returns the number of profiles of the given type.
Profileget_profile(int tag, int position)
Returns the profile with the given tag at the given position.
Profileget_profile(int tag)
Returns the first profile with the given tag (position == 0).

Constructor Detail

IORInfoImpl

public IORInfoImpl(ORB orb, POA poa, Map components, Map policy_overrides, List profiles)

Method Detail

add_ior_component

public void add_ior_component(TaggedComponent component)
Adds component to all profiles.

add_ior_component_to_profile

public void add_ior_component_to_profile(TaggedComponent component, int id)
Adds the component to the profile with the given tag.

add_profile

public void add_profile(Profile profile)
This method adds a further profile to an IOR. By using this method it is possible to append e.g. further IIOP profiles. The added profile is marshalled after all profiles already existing in profile list.

Parameters: profile the profile to add

get_effective_policy

public Policy get_effective_policy(int type)

Returns: a policy of the given type, or null, if no policy of that type is present.

get_number_of_profiles

public int get_number_of_profiles(int tag)
This method returns the number of profiles of the given type. The returned value can be used to iterate over the existing profiles of given type (get_profile()).

Parameters: tag profile tag, e.g. TAG_INTERNET_IOP.value

Returns: number of profiles of given tag

get_profile

public Profile get_profile(int tag, int position)
Returns the profile with the given tag at the given position. Following rule must apply to parameter position:

0 <= position < get_number_of_profiles(tag)

Parameters: tag tag of profile, e.g. TAG_INTERNET_IOP.value position position in IOR

Returns: profile

Throws: ArrayIndexOutOfBoundsException if position is out of range

get_profile

public Profile get_profile(int tag)
Returns the first profile with the given tag (position == 0). If no profile with given tag exists, null is returned.

Parameters: tag tag of profile, e.g. TAG_INTERNET_IOP.value

Returns: first profile or null if no profile with given tag exists