WizardHandler.java :  » Workflow-Engines » shark » org » enhydra » shark » webclient » spec » Java Open Source

Java Open Source » Workflow Engines » shark 
shark » org » enhydra » shark » webclient » spec » WizardHandler.java
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;

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.