Interface IBaseLibraryModule

All Superinterfaces:
IModule, Remote
All Known Subinterfaces:
ILibraryModule
All Known Implementing Classes:
CustomPortalLibraryModule, PortalLibraryModule

@Deprecated(since="2026.0.0", forRemoval=true) public interface IBaseLibraryModule extends IModule
Deprecated, for removal: This API element is subject to removal in a future version.
use com.axemble.vdoc.sdk.modules.ILibraryModule instead
The library module interface.

Code sample :

 // creation of a library module object
 IBaseLibraryModule libraryModule = Modules.getLibraryModule();
 try
 {
 }
 finally
 {
  // uninitialize the module
        Modules.releaseModule(libraryModule);
 }
 

See Also: