org.jboss.jaxr.juddi.axis
Class JBossJuddiAxisHandler

java.lang.Object
  extended byorg.jboss.axis.handlers.BasicHandler (src) 
      extended byorg.jboss.jaxr.juddi.axis.JBossJuddiAxisHandler
All Implemented Interfaces:
Handler (src)

public class JBossJuddiAxisHandler
extends BasicHandler (src)

Axis Handler for jUDDI in JBoss

Since:
Nov 20, 2004

Field Summary
 
Fields inherited from class org.jboss.axis.handlers.BasicHandler (src)
makeLockable, name, options
 
Constructor Summary
JBossJuddiAxisHandler()
           
 
Method Summary
 void cleanup()
          Cleanup is called when the chain containing this Handler object is done processing the chain.
 void init()
          Init is called when the chain containing this Handler object is instantiated.
 void invoke(MessageContext (src)  context)
          Invoke is called to do the actual work of the Handler object.
 
Methods inherited from class org.jboss.axis.handlers.BasicHandler (src)
canHandleBlock, generateWSDL, getDeploymentData, getName, getOption, getOptions, getUnderstoodHeaders, initHashtable, onFault, setName, setOption, setOptionDefault, setOptions, setOptionsLockable
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JBossJuddiAxisHandler

public JBossJuddiAxisHandler()
Method Detail

init

public void init()
Init is called when the chain containing this Handler object is instantiated.

Specified by:
init in interface Handler (src)
Overrides:
init in class BasicHandler (src)

cleanup

public void cleanup()
Cleanup is called when the chain containing this Handler object is done processing the chain.

Specified by:
cleanup in interface Handler (src)
Overrides:
cleanup in class BasicHandler (src)

invoke

public void invoke(MessageContext (src)  context)
Invoke is called to do the actual work of the Handler object. If there is a fault during the processing of this method it is invoke's job to catch the exception and undo any partial work that has been completed. Once we leave 'invoke' if a fault is thrown, this classes 'onFault' method will be called. Invoke should rethrow any exceptions it catches, wrapped in an AxisFault.

Specified by:
invoke in interface Handler (src)
Specified by:
invoke in class BasicHandler (src)