com.webify.wsf.engine.context
Interface ContextListener

All Superinterfaces:
java.util.EventListener

public interface ContextListener
extends java.util.EventListener

Listener for context lifecycle events. Scoped to single context; not anchestors or decendents.

Version:
$Revision: $
Author:
msanchez

Method Summary
 void contextCompleted(java.lang.String contextId)
          Notifies the listener that a context has completed.
 void contextExpired(Context context)
          Notifies the listener that a context has expired.
 void contextStarted(Context context)
          Notifies the listener that a new context is started.
 void contextUpdated(Context context)
          Notifies the listener that a context has been updated.
 

Method Detail

contextStarted

void contextStarted(Context context)
Notifies the listener that a new context is started.

Parameters:
context - the new context

contextCompleted

void contextCompleted(java.lang.String contextId)
Notifies the listener that a context has completed.

Parameters:
contextId - the ID of the completed context

contextExpired

void contextExpired(Context context)
Notifies the listener that a context has expired.

Parameters:
context - the expired context

contextUpdated

void contextUpdated(Context context)
Notifies the listener that a context has been updated.

Parameters:
context - the updated context


Copyright © 2002-2009 IBM. All Rights Reserved.