Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: uno ::

interface XNamingService

Base Interface
com::sun::star::uno::XInterface

Description
This is the interface which should be provided by a naming service.


Known Services which Export this Interface

com::sun::star::uno::NamingService provides a collection of global reachable objects.
com::sun::star::uno::NamingService provides a collection of global reachable objects.
com::sun::star::sdb::DatabaseContext is the context for accessing datasource.

Methods' Summary

getRegisteredObject provides a previous registered object.
registerObject registers one object under the specified name.
revokeObject revokes the registration of an object. If the object was not previously registered, then this call does nothing.

Methods' Details

getRegisteredObject
 
com::sun::star::uno::XInterface
getRegisteredObject(
[ in ] string Name )
raises ( com::sun::star::uno::Exception );

Description
provides a previous registered object.
registerObject
 
void
registerObject(
[ in ] string Name,
[ in ] com::sun::star::uno::XInterface Object )
raises ( com::sun::star::uno::Exception );

Description
registers one object under the specified name.

If any object is registered before, then this object is revoked automatically.

revokeObject
 
void
revokeObject(
[ in ] string Name )
raises ( com::sun::star::uno::Exception );

Description
revokes the registration of an object. If the object was not previously registered, then this call does nothing.

Top of Page