< prev index next >

src/java.corba/share/classes/com/sun/corba/se/spi/orb/DataCollector.java

Print this page




  41     /** Return true iff the local host and ORB initial host are the same.
  42     * This is provided to avoid exposing the local host in insecure
  43     * contexts.
  44     */
  45     boolean initialHostIsLocal() ;
  46 
  47     /** Set the parser which is used to obtain property names.
  48      * This must be called before getProperties
  49      * may be called.  It may be called multiple times if different
  50      * sets of properties are needed for the same data sources.
  51      */
  52     void setParser( PropertyParser parser ) ;
  53 
  54     /** Return the consolidated property information to be used
  55      * for ORB configuration.  Note that -ORBInitRef arguments are
  56      * handled specially: all -ORBInitRef name=value arguments are
  57      * converted into ( org.omg.CORBA.ORBInitRef.name, value )
  58      * mappings in the resulting properties.  Also, -ORBInitialServices
  59      * is handled specially in applet mode: they are converted from
  60      * relative to absolute URLs.
  61      * @raises IllegalStateException if setPropertyNames has not
  62      * been called.
  63      */
  64     Properties getProperties() ;
  65 }


  41     /** Return true iff the local host and ORB initial host are the same.
  42     * This is provided to avoid exposing the local host in insecure
  43     * contexts.
  44     */
  45     boolean initialHostIsLocal() ;
  46 
  47     /** Set the parser which is used to obtain property names.
  48      * This must be called before getProperties
  49      * may be called.  It may be called multiple times if different
  50      * sets of properties are needed for the same data sources.
  51      */
  52     void setParser( PropertyParser parser ) ;
  53 
  54     /** Return the consolidated property information to be used
  55      * for ORB configuration.  Note that -ORBInitRef arguments are
  56      * handled specially: all -ORBInitRef name=value arguments are
  57      * converted into ( org.omg.CORBA.ORBInitRef.name, value )
  58      * mappings in the resulting properties.  Also, -ORBInitialServices
  59      * is handled specially in applet mode: they are converted from
  60      * relative to absolute URLs.
  61      * @throws IllegalStateException if setPropertyNames has not
  62      * been called.
  63      */
  64     Properties getProperties() ;
  65 }
< prev index next >