Package com.sun.corba.ee.impl.resolver
Class BootstrapResolverImpl
- java.lang.Object
-
- com.sun.corba.ee.impl.resolver.BootstrapResolverImpl
-
-
Field Summary
Fields Modifier and Type Field Description private Delegate
bootstrapDelegate
private static ORBUtilSystemException
wrapper
-
Constructor Summary
Constructors Constructor Description BootstrapResolverImpl(ORB orb, java.lang.String host, int port)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private InputStream
invoke(java.lang.String operationName, java.lang.String parameter)
For the BootStrap operation we do not expect to have more than one parameter.java.util.Set<java.lang.String>
list()
Return the entire collection of names that are currently bound by this resolver.Object
resolve(java.lang.String identifier)
Look up the name using this resolver and return the CORBA object reference bound to this name, if any.
-
-
-
Field Detail
-
bootstrapDelegate
private Delegate bootstrapDelegate
-
wrapper
private static final ORBUtilSystemException wrapper
-
-
Constructor Detail
-
BootstrapResolverImpl
public BootstrapResolverImpl(ORB orb, java.lang.String host, int port)
-
-
Method Detail
-
invoke
private InputStream invoke(java.lang.String operationName, java.lang.String parameter)
For the BootStrap operation we do not expect to have more than one parameter. We do not want to extend BootStrap protocol any further, as INS handles most of what BootStrap can handle in a portable way.- Returns:
- InputStream which contains the response from the BootStrapOperation.
-
resolve
public Object resolve(java.lang.String identifier)
Description copied from interface:Resolver
Look up the name using this resolver and return the CORBA object reference bound to this name, if any.
-
list
public java.util.Set<java.lang.String> list()
Description copied from interface:Resolver
Return the entire collection of names that are currently bound by this resolver. Resulting collection contains only strings for which resolve does not return null. Some resolvers may not support this method, in which case they return an empty set.
-
-