com.ibm.wsspi.rrd.extension

Interface ExtensionConfig

All known subinterfaces:
ExtensionGeneratorConfig, ExtensionHandlerConfig

  1. public interface ExtensionConfig
The ExtensionConfig interface provides basic initialization and runtime configuration information that is available to RRD extension generators and handlers.
Since:
WAS6.1

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getClassName()
Retrieves the class name of the extension generator or handler that this extension configuration is associated with.
  1. java.lang.String
getID()
Retrieves the defined identifier for the extension generator or handler that this extension configuration is associated with.
  1. java.lang.String
getInitParameter(java.lang.String name)
Retrieves an initialization parameter for the extension generator or handler that this extension configuration is associated with.
  1. java.util.Iterator
getInitParameterNames()
Retrieves an iterator of initialization parameter names for the extension generator or handler that this extension configuration is associated with.
  1. int
getOrder()
Retrieves the order in which the extension generator or handler associated with this extension configuration will be executed.

Method Detail

getClassName

  1. java.lang.String getClassName()
Retrieves the class name of the extension generator or handler that this extension configuration is associated with.
Returns:
a String containing the class name of the extension generator or handler associated with this extension configuration.

getID

  1. java.lang.String getID()
Retrieves the defined identifier for the extension generator or handler that this extension configuration is associated with.
Returns:
a String containing the defined identifier for the extension generator or handler that this extension configuration is associated with.

getInitParameter

  1. java.lang.String getInitParameter( java.lang.String name)
Retrieves an initialization parameter for the extension generator or handler that this extension configuration is associated with.
Parameters:
name - a String containing the name of the initialization parameter to retrieve.
Returns:
a String containing the value of the given initialization parameter.

getInitParameterNames

  1. java.util.Iterator getInitParameterNames( )
Retrieves an iterator of initialization parameter names for the extension generator or handler that this extension configuration is associated with.
Returns:
an Iterator object containing an iterator of initialization parameter names.

getOrder

  1. int getOrder()
Retrieves the order in which the extension generator or handler associated with this extension configuration will be executed.
Returns:
an integer containing the order in which the extension generator or handler associated with this extension configuration will be executed.