org.apache.beehive.netui.pageflow
Interface ActionResult


public interface ActionResult

Encapsulation of the results returned by PageFlowUtils.strutsLookup(javax.servlet.ServletContext, javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String, java.lang.String[]).


Method Summary
 int getStatusCode()
           
 String getStatusMessage()
           
 String getURI()
           
 boolean hadCompileErrors()
          Deprecated. This method now always returns false; compilation no longer happens at runtime. It will be removed in the next major release.
 boolean isError()
           
 boolean isRedirect()
           
 void printCompileErrors(PrintWriter writer)
          Deprecated. This method has no effect; compilation no longer happens at runtime. It will be removed in the next major release.
 

Method Detail

getURI

String getURI()

isRedirect

boolean isRedirect()

isError

boolean isError()

getStatusCode

int getStatusCode()

getStatusMessage

String getStatusMessage()

hadCompileErrors

boolean hadCompileErrors()
Deprecated. This method now always returns false; compilation no longer happens at runtime. It will be removed in the next major release.


printCompileErrors

void printCompileErrors(PrintWriter writer)
Deprecated. This method has no effect; compilation no longer happens at runtime. It will be removed in the next major release.