All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface orbasec.corba.MechanismInitializer

public interface MechanismInitializer
This interface is used at SL2 initialization to initialize one or more mechanisms for a protocol. You should implement this method if you implement a security mechanism to operate with a security protocol, such as SECIOP, or perhaps one of your own design.

See Also:
ProtocolInitializer

Method Index

 o init(ORB, BOA, Properties)
This function is called by the SL2 intialization when initializing a one or more mechanisms for the SECIOP protocol.

Methods

 o init
 public abstract void init(ORB orb,
                           BOA boa,
                           Properties properties)
This function is called by the SL2 intialization when initializing a one or more mechanisms for the SECIOP protocol.

Parameters:
orb - The ORB instance.
boa - The BOA instance. This may be null, if the BOA is not initialized.
argv - The args given to orbasec.SL2.init()
properties - This parameter contains Properties read through the config file given to -ORBconfig argument or at the command line. Note. ORBacus Properties read through the config file or the command line are coverted to java.util.Properties before being passed to this method. Given any property not defined through a config file or passed though the command line that has a default value, this default value is inserted into the java.util.Properties parameter. Moreover, if a property is overridden via a command-line argument, the overriding value will be put in this Properties object in place of the value that is overridden.

All Packages  Class Hierarchy  This Package  Previous  Next  Index