Interface ModuleInfo
- 
- All Known Subinterfaces:
- ClientModuleInfo,- ConnectorModuleInfo,- EJBModuleInfo,- WebModuleInfo
 
 public interface ModuleInfoContains information about a JEE Module
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationInfogetApplicationInfo()Returns the ApplicationInfo for the application that contains this modulejava.lang.ClassLoadergetClassLoader()Returns the classloader associated with the modulecom.ibm.wsspi.adaptable.module.ContainergetContainer()Returns the container object for this modulejava.lang.StringgetName()Returns the unique module name.java.lang.StringgetURI()
 
- 
- 
- 
Method Detail- 
getNamejava.lang.String getName() Returns the unique module name. This will normally be the module name specified in the deployment descriptor (or the URI base name) unless that value would conflict with another module in the same application, in which case a unique name will have been generated and will be returned.
 - 
getURIjava.lang.String getURI() - Returns:
- the module URI (e.g., "test.jar") as specified in the application deployment descriptor, or the application basename for a standalone module
 
 - 
getContainercom.ibm.wsspi.adaptable.module.Container getContainer() Returns the container object for this module- Returns:
 
 - 
getApplicationInfoApplicationInfo getApplicationInfo() Returns the ApplicationInfo for the application that contains this module- Returns:
 
 - 
getClassLoaderjava.lang.ClassLoader getClassLoader() Returns the classloader associated with the module- Returns:
 
 
- 
 
-