01: package com.sun.portal.sra.desktop.commands;
02:
03: import java.io.IOException;
04: import java.util.HashMap;
05:
06: import javax.servlet.http.HttpServletRequest;
07: import javax.servlet.http.HttpServletResponse;
08:
09: public interface Command {
10: // Each of the command objects will call the respective providers and
11: // put the data beans in the session scope for the view to pick up
12: public void execute(HttpServletRequest req,
13: HttpServletResponse res, HashMap providerMap)
14: throws IOException, CommandExecutionException;
15: }
|