edu.utexas.its.eis.tools.qwicap.servlet
Interface FilterRunnable


public interface FilterRunnable

Represents a body of code to be executed by request of a FormDataSetFilter. The filter makes that request by invoking the FormDataSetFilterResponse.run method.

Author:
Chris W. Johnson

Method Summary
 void run()
          Implementations of this method may do whatever they want.
 

Method Detail

run

void run()
         throws Exception
Implementations of this method may do whatever they want. A common use will be opening a new page by invoking the method that implements that page's prompt pattern.

Throws:
Exception - Any exception may be thrown, however, only subclasses of the QwicapAbandonmentException will be allowed to propagate. Other types of exceptions will be caught and logged.