com.ibm.wsspi.sca.metadata

Interface ItemInfo

All known subinterfaces:
BFMComponentInfo, ComponentInfo, ExportInfo, HTMComponentInfo, ImportInfo

  1. public interface ItemInfo
Super interface for components, imports and exports that provide common information of components, imports and exports.
Since:
7.5.1.0

Field Summary

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

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getDescription()
Method returns the description of the item.
  1. java.lang.String
getDisplayName()
Method returns the display name of the item.
  1. Interface
getInterface()
Method returns the interface of the item.
  1. java.util.Collection<Interface>
getInterfaces()
Method returns the interfaces of the item.
  1. java.lang.String
getName()
Method returns the name of the item.

Field Detail

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

Method Detail

getName

  1. java.lang.String getName()
Method returns the name of the item.
Returns:
String Name of the item.

getDisplayName

  1. java.lang.String getDisplayName( )
Method returns the display name of the item.
Returns:
String Display name of the item.

getDescription

  1. java.lang.String getDescription( )
Method returns the description of the item.
Returns:
String Description of the item.

getInterface

  1. Interface getInterface()
Method returns the interface of the item.
Returns:
Interface Interface of the item.

getInterfaces

  1. java.util.Collection<Interface> getInterfaces( )
Method returns the interfaces of the item.
Returns:
Collection Collection of interfaces of the item.