IBM WebSphere Application ServerTM
Release 7

com.ibm.wsspi.rrd.extension
Interface ExtensionConfig

All Known Subinterfaces:
ExtensionGeneratorConfig, ExtensionHandlerConfig

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
 java.lang.String getClassName()
          Retrieves the class name of the extension generator or handler that this extension configuration is associated with.
 java.lang.String getID()
          Retrieves the defined identifier for the extension generator or handler that this extension configuration is associated with.
 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.
 java.util.Iterator getInitParameterNames()
          Retrieves an iterator of initialization parameter names for the extension generator or handler that this extension configuration is associated with.
 int getOrder()
          Retrieves the order in which the extension generator or handler associated with this extension configuration will be executed.
 

Method Detail

getClassName

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

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

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

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

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.

IBM WebSphere Application ServerTM
Release 7