Uses of Class
org.omg.CosNaming.NameComponent
-
Packages that use NameComponent Package Description com.sun.corba.ee.impl.naming.cosnaming org.glassfish.jndi.cosnaming org.omg.CosNaming org.omg.CosNaming.NamingContextPackage -
-
Uses of NameComponent in com.sun.corba.ee.impl.naming.cosnaming
Fields in com.sun.corba.ee.impl.naming.cosnaming declared as NameComponent Modifier and Type Field Description NameComponent
InternalBindingKey. name
Methods in com.sun.corba.ee.impl.naming.cosnaming that return NameComponent Modifier and Type Method Description NameComponent[]
InterOperableNamingImpl. convertToNameComponent(java.lang.String theStringifiedName)
Method which converts the Stringified name into Array of Name Components.private NameComponent
InterOperableNamingImpl. createNameComponentFromString(java.lang.String theStringifiedNameComponent)
Step 2: After Breaking the Stringified name into set of NameComponent Strings, The next step is to create Namecomponents from the substring by removing the escapes if there are any.NameComponent[]
NamingContextImpl. to_name(java.lang.String sn)
This operation converts a Stringified Name into an equivalent array of Name Components.Methods in com.sun.corba.ee.impl.naming.cosnaming with parameters of type NameComponent Modifier and Type Method Description void
NamingContextImpl. bind(NameComponent[] n, Object obj)
Bind an object under a name in this NamingContext.void
NamingContextImpl. bind_context(NameComponent[] n, NamingContext nc)
Bind a NamingContext under a name in this NamingContext.NamingContext
NamingContextImpl. bind_new_context(NameComponent[] n)
Create a new NamingContext, bind it in this Naming Context and return its object reference.void
NamingContextDataStore. bindImpl(NameComponent n, Object obj, BindingType bt)
Method which implements binding a name to an object as the specified binding type.void
TransientNamingContext. bindImpl(NameComponent n, Object obj, BindingType bt)
Binds the object to the name component as the specified binding type.private java.lang.String
InterOperableNamingImpl. convertNameComponentToString(NameComponent theNameComponent)
This method converts a single Namecomponent to String, By adding Escapes If neccessary.java.lang.String
InterOperableNamingImpl. convertToString(NameComponent[] theNameComponents)
Method which stringifies the Name Components given as the input parameter.static void
NamingContextImpl. doBind(NamingContextDataStore impl, NameComponent[] n, Object obj, boolean rebind, BindingType bt)
Implements all four flavors of binding.static Object
NamingContextImpl. doResolve(NamingContextDataStore impl, NameComponent[] n)
Implements resolving names in this NamingContext.static void
NamingContextImpl. doUnbind(NamingContextDataStore impl, NameComponent[] n)
Implements unbinding bound names in this NamingContext.(package private) static java.lang.String
NamingUtils. getDirectoryStructuredName(NameComponent[] name)
A utility method that takes Array of NameComponent and converts into a directory structured name in the format of /id1.kind1/id2.kind2..private java.lang.String
TransientNamingContext. getName(NameComponent n)
A Utility Method For Logging..void
NamingContextImpl. rebind(NameComponent[] n, Object obj)
Bind an object under a name in this NamingContext.void
NamingContextImpl. rebind_context(NameComponent[] n, NamingContext nc)
Bind a NamingContext under a name in this NamingContext.Object
NamingContextImpl. resolve(NameComponent[] n)
Resolve a name in this NamingContext and return the object reference bound to the name.protected static NamingContext
NamingContextImpl. resolveFirstAsContext(NamingContextDataStore impl, NameComponent[] n)
Implements resolving a NameComponent in this context and narrowing it to CosNaming::NamingContext.Object
NamingContextDataStore. resolveImpl(NameComponent n, BindingTypeHolder bth)
Method which implements resolving the specified name, returning the type of the binding and the bound object reference.Object
TransientNamingContext. resolveImpl(NameComponent n, BindingTypeHolder bth)
Resolves the supplied name to an object reference and returns the type of the resolved binding.protected void
InternalBindingKey. setup(NameComponent n)
java.lang.String
NamingContextImpl. to_string(NameComponent[] n)
This operation creates a stringified name from the array of Name components.void
NamingContextImpl. unbind(NameComponent[] n)
Remove a binding from this NamingContext.Object
NamingContextDataStore. unbindImpl(NameComponent name)
Method which implements unbinding a name.Object
TransientNamingContext. unbindImpl(NameComponent n)
Deletes the binding with the supplied name.Constructors in com.sun.corba.ee.impl.naming.cosnaming with parameters of type NameComponent Constructor Description InternalBindingKey(NameComponent n)
-
Uses of NameComponent in org.glassfish.jndi.cosnaming
Fields in org.glassfish.jndi.cosnaming declared as NameComponent Modifier and Type Field Description private NameComponent[]
CNCtx. _name
Methods in org.glassfish.jndi.cosnaming that return NameComponent Modifier and Type Method Description (package private) NameComponent[]
CNCtx. makeFullName(NameComponent[] child)
(package private) static NameComponent[]
CNNameParser. nameToCosName(javax.naming.Name name)
Creates a NameComponent[] from a Name structure.private static NameComponent
CNNameParser. parseComponent(java.lang.String compStr)
Return a NameComponent given its stringified form.Methods in org.glassfish.jndi.cosnaming with parameters of type NameComponent Modifier and Type Method Description private javax.naming.Context
CNCtx. callBindNewContext(NameComponent[] path)
Calls the bind_new_context COS naming api to create a new subcontext.private void
CNCtx. callBindOrRebind(NameComponent[] pth, javax.naming.Name name, java.lang.Object obj, boolean rebind)
Performs bind or rebind in the context depending on whether the flag rebind is set.(package private) java.lang.Object
CNCtx. callResolve(NameComponent[] path)
Does the job of calling the COS Naming API, resolve, and performs the exception mapping.private void
CNCtx. callUnbind(NameComponent[] path)
Calls the unbind api of COS Naming and uses the exception mapper class to map the exceptions(package private) static java.lang.String
CNNameParser. cosNameToInsString(NameComponent[] cname)
Returns the INS stringified form of a NameComponent[].(package private) static javax.naming.Name
CNNameParser. cosNameToName(NameComponent[] cname)
Creates a CompositeName from a NameComponent[].private boolean
CNCtx. leafNotFound(NotFound e, NameComponent leaf)
(package private) NameComponent[]
CNCtx. makeFullName(NameComponent[] child)
static javax.naming.NamingException
ExceptionMapper. mapException(java.lang.Exception e, CNCtx ctx, NameComponent[] inputName)
private static java.lang.String
CNNameParser. stringifyComponent(NameComponent comp)
private static javax.naming.NamingException
ExceptionMapper. tryFed(NotFound e, CNCtx ctx, NameComponent[] inputName)
Constructors in org.glassfish.jndi.cosnaming with parameters of type NameComponent Constructor Description CNCtx(ORB orb, OrbReuseTracker tracker, NamingContext nctx, java.util.Hashtable<java.lang.String,java.lang.Object> env, NameComponent[] name)
Creates a CNCtx object which supports the javax.naming apis given a COS Naming Context object. -
Uses of NameComponent in org.omg.CosNaming
Fields in org.omg.CosNaming declared as NameComponent Modifier and Type Field Description NameComponent[]
Binding. binding_name
NameComponent
NameComponentHolder. value
NameComponent[]
NameHolder. value
Methods in org.omg.CosNaming that return NameComponent Modifier and Type Method Description static NameComponent
NameComponentHelper. extract(Any a)
static NameComponent[]
NameHelper. extract(Any a)
static NameComponent
NameComponentHelper. read(InputStream istream)
static NameComponent[]
NameHelper. read(InputStream istream)
NameComponent[]
_NamingContextExtStub. to_name(java.lang.String sn)
This operation converts a Stringified Name into an equivalent array of Name Components.NameComponent[]
NamingContextExtOperations. to_name(java.lang.String sn)
This operation converts a Stringified Name into an equivalent array of Name Components.NameComponent[]
NamingContextExtPOATie. to_name(java.lang.String sn)
This operation converts a Stringified Name into an equivalent array of Name Components.Methods in org.omg.CosNaming with parameters of type NameComponent Modifier and Type Method Description void
_NamingContextExtStub. bind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context.void
_NamingContextStub. bind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context.void
NamingContextExtPOATie. bind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context.void
NamingContextOperations. bind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context.void
NamingContextPOATie. bind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context.void
_NamingContextExtStub. bind_context(NameComponent[] n, NamingContext nc)
Names an object that is a naming context.void
_NamingContextStub. bind_context(NameComponent[] n, NamingContext nc)
Names an object that is a naming context.void
NamingContextExtPOATie. bind_context(NameComponent[] n, NamingContext nc)
Names an object that is a naming context.void
NamingContextOperations. bind_context(NameComponent[] n, NamingContext nc)
Names an object that is a naming context.void
NamingContextPOATie. bind_context(NameComponent[] n, NamingContext nc)
Names an object that is a naming context.NamingContext
_NamingContextExtStub. bind_new_context(NameComponent[] n)
This operation creates a new context and binds it to the name supplied as an argument.NamingContext
_NamingContextStub. bind_new_context(NameComponent[] n)
This operation creates a new context and binds it to the name supplied as an argument.NamingContext
NamingContextExtPOATie. bind_new_context(NameComponent[] n)
This operation creates a new context and binds it to the name supplied as an argument.NamingContext
NamingContextOperations. bind_new_context(NameComponent[] n)
This operation creates a new context and binds it to the name supplied as an argument.NamingContext
NamingContextPOATie. bind_new_context(NameComponent[] n)
This operation creates a new context and binds it to the name supplied as an argument.static void
NameComponentHelper. insert(Any a, NameComponent that)
static void
NameHelper. insert(Any a, NameComponent[] that)
void
_NamingContextExtStub. rebind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context even if the name is already bound in the context.void
_NamingContextStub. rebind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context even if the name is already bound in the context.void
NamingContextExtPOATie. rebind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context even if the name is already bound in the context.void
NamingContextOperations. rebind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context even if the name is already bound in the context.void
NamingContextPOATie. rebind(NameComponent[] n, Object obj)
Creates a binding of a name and an object in the naming context even if the name is already bound in the context.void
_NamingContextExtStub. rebind_context(NameComponent[] n, NamingContext nc)
Creates a binding of a name and a naming context in the naming context even if the name is already bound in the context.void
_NamingContextStub. rebind_context(NameComponent[] n, NamingContext nc)
Creates a binding of a name and a naming context in the naming context even if the name is already bound in the context.void
NamingContextExtPOATie. rebind_context(NameComponent[] n, NamingContext nc)
Creates a binding of a name and a naming context in the naming context even if the name is already bound in the context.void
NamingContextOperations. rebind_context(NameComponent[] n, NamingContext nc)
Creates a binding of a name and a naming context in the naming context even if the name is already bound in the context.void
NamingContextPOATie. rebind_context(NameComponent[] n, NamingContext nc)
Creates a binding of a name and a naming context in the naming context even if the name is already bound in the context.Object
_NamingContextExtStub. resolve(NameComponent[] n)
The resolve operation is the process of retrieving an object bound to a name in a given context.Object
_NamingContextStub. resolve(NameComponent[] n)
The resolve operation is the process of retrieving an object bound to a name in a given context.Object
NamingContextExtPOATie. resolve(NameComponent[] n)
The resolve operation is the process of retrieving an object bound to a name in a given context.Object
NamingContextOperations. resolve(NameComponent[] n)
The resolve operation is the process of retrieving an object bound to a name in a given context.Object
NamingContextPOATie. resolve(NameComponent[] n)
The resolve operation is the process of retrieving an object bound to a name in a given context.java.lang.String
_NamingContextExtStub. to_string(NameComponent[] n)
This operation creates a stringified name from the array of Name components.java.lang.String
NamingContextExtOperations. to_string(NameComponent[] n)
This operation creates a stringified name from the array of Name components.java.lang.String
NamingContextExtPOATie. to_string(NameComponent[] n)
This operation creates a stringified name from the array of Name components.void
_NamingContextExtStub. unbind(NameComponent[] n)
The unbind operation removes a name binding from a context.void
_NamingContextStub. unbind(NameComponent[] n)
The unbind operation removes a name binding from a context.void
NamingContextExtPOATie. unbind(NameComponent[] n)
The unbind operation removes a name binding from a context.void
NamingContextOperations. unbind(NameComponent[] n)
The unbind operation removes a name binding from a context.void
NamingContextPOATie. unbind(NameComponent[] n)
The unbind operation removes a name binding from a context.static void
NameComponentHelper. write(OutputStream ostream, NameComponent value)
static void
NameHelper. write(OutputStream ostream, NameComponent[] value)
Constructors in org.omg.CosNaming with parameters of type NameComponent Constructor Description Binding(NameComponent[] _binding_name, BindingType _binding_type)
NameComponentHolder(NameComponent initialValue)
NameHolder(NameComponent[] initialValue)
-
Uses of NameComponent in org.omg.CosNaming.NamingContextPackage
Fields in org.omg.CosNaming.NamingContextPackage declared as NameComponent Modifier and Type Field Description NameComponent[]
CannotProceed. rest_of_name
NameComponent[]
NotFound. rest_of_name
Constructors in org.omg.CosNaming.NamingContextPackage with parameters of type NameComponent Constructor Description CannotProceed(java.lang.String $reason, NamingContext _cxt, NameComponent[] _rest_of_name)
CannotProceed(NamingContext _cxt, NameComponent[] _rest_of_name)
NotFound(java.lang.String $reason, NotFoundReason _why, NameComponent[] _rest_of_name)
NotFound(NotFoundReason _why, NameComponent[] _rest_of_name)
-