All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sun.jaw.reference.agent.services.LibraryLoaderIf

public interface LibraryLoaderIf
extends Serializable
This interface identifies a service for loading native libraries.


Method Index

 o loadLibrary(String, String)
Loads a dynamic native library.

Methods

 o loadLibrary
 public abstract void loadLibrary(String baseName,
                                  String libName) throws SecurityException, UnsatisfiedLinkError
Loads a dynamic native library.

Parameters:
baseName - The basename argument is the unique library base name where the library is stored on the management server.
libName - The libname argument is either the full pathname of the library below the library base path or is a simple, architecture-independent library name where the path, prefix, and suffix for the library name are generated based on the appliance type on which the loadLibrary() call was made.
Throws: SecurityException
If the current thread cannot load the specified dynamic library.
Throws: UnsatisfiedLinkError
If the library does not exist.

All Packages  Class Hierarchy  This Package  Previous  Next  Index