com.ibm.wsspi.sca.metadata
Interface ModuleMetaData
- public interface ModuleMetaData
MetaDataRegistry
.
Since:
7.5.1.0
See Also:
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
getBOMode()
Method that returns the BO Mode (BO Eager, BO Lazy) of the SCA module.
|
|
|
getComponents()
Method returns a list of
ComponentInfo objects with information
about each component within this SCA module.
|
|
getExports()
Method returns a list of
ExportInfo objects with information
about each export within this SCA module.
|
|
getImports()
Method returns a list of
ImportInfo objects with information
about each import within this SCA module.
|
|
getModuleName()
Method that returns the SCA module name.
|
|
getModuleShortName()
Method that returns the SCA module short name.
|
|
getRootContainerAcronym()
Method returns the root container acronym if the application belongs to a
process application; otherwise
null .
|
|
getRootContainerName()
Method returns the root container name if the application belongs to a
process application; otherwise
null .
|
|
getRootContainerSnapshotGUID()
Method returns the root container snapshot GUID if the application belongs
to a process application; otherwise
null .
|
|
getRootContainerSnapshotName()
Method returns the root container snapshot name if the application belongs
to a process application; otherwise
null .
|
|
getRootContainerTrackName()
Method returns the root container track name if the application belongs
to a process application; otherwise
null .
|
|
getToolkitAcronym()
Method returns the toolkit acronym if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null .
|
|
getToolkitName()
Method returns the name of the toolkit if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null .
|
|
getToolkitSnapshotID()
Method returns the toolkit snapshot ID if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null .
|
|
getToolkitSnapshotName()
Method returns the toolkit snapshot name if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null .
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
Method Detail
getModuleName
- java.lang.String getModuleName( )
Method that returns the SCA module name.
Returns:
String
SCA module name.
getModuleShortName
- java.lang.String getModuleShortName( )
Method that returns the SCA module short name.
Returns:
String
SCA module short name.
getBOMode
- BOMode getBOMode()
Method that returns the BO Mode (BO Eager, BO Lazy) of the SCA module.
Returns:
BOMode
BO Mode (BO Eager, BO Lazy) of the SCA module.
getRootContainerSnapshotGUID
- java.lang.String getRootContainerSnapshotGUID( )
Method returns the root container snapshot GUID if the application belongs
to a process application; otherwise
null
.
Returns:
String
Root container snapshot GUID if the application belongs to a process
application; otherwise
null
. getRootContainerName
- java.lang.String getRootContainerName( )
Method returns the root container name if the application belongs to a
process application; otherwise
null
.
Returns:
String
Root container name if the application belongs to a process
application; otherwise
null
. getRootContainerAcronym
- java.lang.String getRootContainerAcronym( )
Method returns the root container acronym if the application belongs to a
process application; otherwise
null
.
Returns:
String
Root container acronym if the application belongs to a process
application; otherwise
null
. getRootContainerSnapshotName
- java.lang.String getRootContainerSnapshotName( )
Method returns the root container snapshot name if the application belongs
to a process application; otherwise
null
.
Returns:
String
Root container snapshot name if the application belongs to a process
application; otherwise
null
. getRootContainerTrackName
- java.lang.String getRootContainerTrackName( )
Method returns the root container track name if the application belongs
to a process application; otherwise
null
.
Returns:
String
Root container track name if the application belongs to a process
application; otherwise
null
. getToolkitName
- java.lang.String getToolkitName( )
Method returns the name of the toolkit if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null
.
Returns:
String
Name of the toolkit if the application belongs to a process
application and the process application contains a toolkit;
otherwise
null
. getToolkitAcronym
- java.lang.String getToolkitAcronym( )
Method returns the toolkit acronym if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null
.
Returns:
String
Toolkit acronym if the application belongs to a process
application and the process application contains a toolkit;
otherwise
null
. getToolkitSnapshotName
- java.lang.String getToolkitSnapshotName( )
Method returns the toolkit snapshot name if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null
.
Returns:
String
Toolkit snapshot name if the application belongs to a process
application and the process application contains a toolkit;
otherwise
null
. getToolkitSnapshotID
- java.lang.String getToolkitSnapshotID( )
Method returns the toolkit snapshot ID if the application belongs to a
process application and the process application contains a toolkit;
otherwise
null
.
Returns:
String
Toolkit snapshot ID if the application belongs to a process
application and the process application contains a toolkit;
otherwise
null
. getComponents
- java.util.Collection<ComponentInfo> getComponents( )
Method returns a list of
ComponentInfo
objects with information
about each component within this SCA module.
Returns:
Collection
List of
ComponentInfo
objects with information about each
component within this SCA module. getImports
- java.util.Collection<ImportInfo> getImports( )
Method returns a list of
ImportInfo
objects with information
about each import within this SCA module.
Returns:
Collection
List of
ImportInfo
objects with information about each
import within this SCA module. getExports
- java.util.Collection<ExportInfo> getExports( )
Method returns a list of
ExportInfo
objects with information
about each export within this SCA module.
Returns:
Collection
List of
ExportInfo
objects with information about each
export within this SCA module.