package org.enhydra.shark.webclient.spec;
import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
public interface WizardHandler {
String handleRequest(String username, HttpPresentationComms myComms) throws Exception;
String handleRedirect(String username, HttpPresentationComms myComms) throws Exception;
String handleRedirectSpecial(String username, HttpPresentationComms myComms)
throws Exception;
String handleRedirectAfterProcessEnd(String username,
String procId,
HttpPresentationComms myComms) throws Exception;
String handleBackToCaller(String username, HttpPresentationComms myComms)
throws Exception;
String handleBackToPrevious(String username, HttpPresentationComms myComms)
throws Exception;
String handleCreateProcess(String username, HttpPresentationComms myComms)
throws Exception;
}
|