com.ibm.wsspi.rrd.extension.handler

Class GenericExtensionHandler

  1. java.lang.Object
  2. extended bycom.ibm.wsspi.rrd.extension.handler.GenericExtensionHandler
All implemented interfaces:
ExtensionHandler

  1. public abstract class GenericExtensionHandler
  2. extends java.lang.Object
  3. implements ExtensionHandler
The GenericExtensionHandler class defines an abstract class which provides a base for RRD extension handler classes that handles basic initialization and configuration methods.
Since:
WAS6.1

Field Summary

Modifier and Type Field and Description
  1. protected
  2. ExtensionHandlerConfig
config

Constructor Summary

Constructor and Description
GenericExtensionHandler()

Method Summary

Modifier and Type Method and Description
  1. ExtensionHandlerConfig
getExtensionHandlerConfig()
  1. void
init(ExtensionHandlerConfig config)
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.ibm.wsspi.rrd.extension.handler.ExtensionHandler
destroy, doHandle

Field Detail

config

  1. protected ExtensionHandlerConfig config

Constructor Detail

GenericExtensionHandler

  1. public GenericExtensionHandler( )

Method Detail

init

  1. public void init(ExtensionHandlerConfig config)
  2. throws RRDException
Description copied from interface: ExtensionHandler
Initializes this extension handler.
Specified by:
init in interface ExtensionHandler
Parameters:
config - an ExtensionConfig object containing configuration information for this extension handler.
Throws:
RRDException - if an error occurs during initialization.

getExtensionHandlerConfig

  1. public ExtensionHandlerConfig getExtensionHandlerConfig( )
Description copied from interface: ExtensionHandler
Retrieves the extension handler configuration information associated with this extension handler.
Specified by:
Returns:
an ExtensionHandlerConfig object containing the extension handler configuration information associated with this extension handler.