|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
|
+--org.omg.PortableServer.Servant
|
+--org.omg.CosNaming.NamingContextPOA
|
+--org.omg.CosNaming.NamingContextPOATie
This interface provides all functions to bind, rebind and resolve an object into the naming graph.
| Constructor Summary | |
NamingContextPOATie(NamingContextOperations tieObject)
Constructor |
|
NamingContextPOATie(NamingContextOperations tieObject,
POA poa)
Constructor |
|
| Method Summary | |
POA |
_default_POA()
_default_POA method |
NamingContextOperations |
_delegate()
Get the delegate |
void |
_delegate(NamingContextOperations delegate_)
Set the delegate |
void |
bind_context(NameComponent[] n,
NamingContext nc)
Operation bind_context |
NamingContext |
bind_new_context(NameComponent[] n)
Operation bind_new_context |
void |
bind(NameComponent[] n,
Object obj)
Operation bind |
void |
destroy()
Operation destroy |
void |
list(int how_many,
BindingListHolder bl,
BindingIteratorHolder bi)
Operation list |
NamingContext |
new_context()
Operation new_context |
void |
rebind_context(NameComponent[] n,
NamingContext nc)
Operation rebind_context |
void |
rebind(NameComponent[] n,
Object obj)
Operation rebind |
Object |
resolve(NameComponent[] n)
Operation resolve |
void |
unbind(NameComponent[] n)
Operation unbind |
| Methods inherited from class org.omg.CosNaming.NamingContextPOA |
_all_interfaces, _invoke, _this, _this |
| Methods inherited from class org.omg.PortableServer.Servant |
_get_delegate, _get_interface_def, _get_interface, _is_a, _non_existent, _object_id, _orb, _orb, _poa, _set_delegate, _this_object, _this_object |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public NamingContextPOATie(NamingContextOperations tieObject)
public NamingContextPOATie(NamingContextOperations tieObject,
POA poa)
| Method Detail |
public NamingContextOperations _delegate()
public void _delegate(NamingContextOperations delegate_)
public POA _default_POA()
_default_POA in class Servant
public void bind(NameComponent[] n,
Object obj)
throws NotFound,
CannotProceed,
InvalidName,
AlreadyBound
org.omg.CosNaming.NamingContextOperationsn - The compound name for the object to bindobj - The object to bindNotFound - Indicates the name does not identify a binding.CannotProceed - Indicates that the implementation has
given up for some reason. The client, however,
may be able to continue the operation at the
returned naming context.Indicates - the name is invalid. (A name of length 0
is invalid; implementations may place other
restrictions on names.)AlreadyBound - Indicates an object is already bound to
the specified name. Only one object can be bound
to a particular name in a context. The bind and
the bind_context operations raise the
AlreadyBound exception if the name is bound in
the context; the rebind and rebind_context
operations unbind the name and rebind the name
to the object passed as an argument.
public void rebind(NameComponent[] n,
Object obj)
throws NotFound,
CannotProceed,
InvalidName
org.omg.CosNaming.NamingContextOperationsn - The compound name for the object to rebindobj - The object to rebindNotFound - Indicates the name does not identify a binding.CannotProceed - Indicates that the implementation has
given up for some reason. The client, however,
may be able to continue the operation at the
returned naming context.InvalidName - Indicates the name is invalid. (A name
of length 0 is invalid; implementations may
place other restrictions on names.)AlreadyBound - Indicates an object is already bound to
the specified name. Only one object can be bound
to a particular name in a context. The bind and
the bind_context operations raise the
AlreadyBound exception if the name is bound in
the context; the rebind and rebind_context
operations unbind the name and rebind the name
to the object passed as an argument.
public void bind_context(NameComponent[] n,
NamingContext nc)
throws NotFound,
CannotProceed,
InvalidName,
AlreadyBound
org.omg.CosNaming.NamingContextOperationsn - The compound name for the naming context to bindobj - The naming context to bindNotFound - Indicates the name does not identify a binding.CannotProceed - Indicates that the implementation has
given up for some reason. The client, however,
may be able to continue the operation at the
returned naming context.InvalidName - Indicates the name is invalid. (A name
of length 0 is invalid; implementations may
place other restrictions on names.)AlreadyBound - Indicates an object is already bound to
the specified name. Only one object can be bound
to a particular name in a context. The bind and
the bind_context operations raise the
AlreadyBound exception if the name is bound in
the context; the rebind and rebind_context
operations unbind the name and rebind the name
to the object passed as an argument.
public void rebind_context(NameComponent[] n,
NamingContext nc)
throws NotFound,
CannotProceed,
InvalidName
org.omg.CosNaming.NamingContextOperationsn - The compound name for the naming context to rebindobj - The naming context to rebindNotFound - Indicates the name does not identify a
binding.CannotProceed - Indicates that the implementation has
given up for some reason. The client, however,
may be able to continue the operation at the
returned naming context.InvalidName - Indicates the name is invalid. (A name
of length 0 is invalid; implementations may
place other restrictions on names.)AlreadyBound - Indicates an object is already bound to
the specified name. Only one object can be bound
to a particular name in a context. The bind and
the bind_context operations raise the
AlreadyBound exception if the name is bound in
the context; the rebind and rebind_context
operations unbind the name and rebind the name
to the object passed as an argument.
public Object resolve(NameComponent[] n)
throws NotFound,
CannotProceed,
InvalidName
org.omg.CosNaming.NamingContextOperationsn - The compound name for the object to resolve.NotFound - Indicates the name does not identify a binding.CannotProceed - Indicates that the implementation has
given up for some reason. The client, however,
may be able to continue the operation at the
returned naming context.InvalidName - Indicates the name is invalid. (A name
of length 0 is invalid; implementations may
place other restrictions on names.)
public void unbind(NameComponent[] n)
throws NotFound,
CannotProceed,
InvalidName
org.omg.CosNaming.NamingContextOperationsn - The compound name for the node to unbind ( an object
or a naming context )NotFound - Indicates the name does not identify a binding.CannotProceed - Indicates that the implementation has
given up for some reason. The client, however,
may be able to continue the operation at the
returned naming context.InvalidName - Indicates the name is invalid. (A name
of length 0 is invalid; implementations may
place other restrictions on names.)public NamingContext new_context()
org.omg.CosNaming.NamingContextOperations
public NamingContext bind_new_context(NameComponent[] n)
throws NotFound,
AlreadyBound,
CannotProceed,
InvalidName
org.omg.CosNaming.NamingContextOperationsn - The compound name for the naming context to create and
to bind.NotFound - Indicates the name does not identify a
binding.CannotProceed - Indicates that the implementation has
given up for some reason. The client, however,
may be able to continue the operation at the
returned naming context.InvalidName - Indicates the name is invalid. (A name
of length 0 is invalid; implementations may
place other restrictions on names.)AlreadyBound - Indicates an object is already bound to
the specified name. Only one object can be bound
to a particular name in a context.
public void destroy()
throws NotEmpty
org.omg.CosNaming.NamingContextOperationsNotEmpty - If the naming context contains bindings,
the NotEmpty exception is raised.
public void list(int how_many,
BindingListHolder bl,
BindingIteratorHolder bi)
org.omg.CosNaming.NamingContextOperationshow_many - Maximum number of elements into the binding list.bl - This parameter returns a list that contains all node
of the naming contextbi - This parameter returns a binding iterator to iterate
in the list.
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||