com.ibm.wsspi.sca.metadata

Interface ModuleMetaData


  1. public interface ModuleMetaData
Interface for the SCA meta data that can be retrieved by the SCA meta data registry MetaDataRegistry.
Since:
7.5.1.0
See Also:
MetaDataRegistry

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT

Method Summary

Modifier and Type Method and Description
  1. BOMode
getBOMode()
Method that returns the BO Mode (BO Eager, BO Lazy) of the SCA module.
  1. java.util.Collection<ComponentInfo>
getComponents()
Method returns a list of ComponentInfo objects with information about each component within this SCA module.
  1. java.util.Collection<ExportInfo>
getExports()
Method returns a list of ExportInfo objects with information about each export within this SCA module.
  1. java.util.Collection<ImportInfo>
getImports()
Method returns a list of ImportInfo objects with information about each import within this SCA module.
  1. java.lang.String
getModuleName()
Method that returns the SCA module name.
  1. java.lang.String
getModuleShortName()
Method that returns the SCA module short name.
  1. java.lang.String
getRootContainerAcronym()
Method returns the root container acronym if the application belongs to a process application; otherwise null.
  1. java.lang.String
getRootContainerName()
Method returns the root container name if the application belongs to a process application; otherwise null.
  1. java.lang.String
getRootContainerSnapshotGUID()
Method returns the root container snapshot GUID if the application belongs to a process application; otherwise null.
  1. java.lang.String
getRootContainerSnapshotName()
Method returns the root container snapshot name if the application belongs to a process application; otherwise null.
  1. java.lang.String
getRootContainerTrackName()
Method returns the root container track name if the application belongs to a process application; otherwise null.
  1. 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.
  1. 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.
  1. 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.
  1. 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.

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

Method Detail

getModuleName

  1. java.lang.String getModuleName( )
Method that returns the SCA module name.
Returns:
String SCA module name.

getModuleShortName

  1. java.lang.String getModuleShortName( )
Method that returns the SCA module short name.
Returns:
String SCA module short name.

getBOMode

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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

  1. 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.