Package | Description |
---|---|
net.sourceforge.stripes.controller |
This package contains classes which form the core internals of Stripes.
|
net.sourceforge.stripes.exception |
Contains interfaces and implementations of exception handling strategy classes.
|
Modifier and Type | Class and Description |
---|---|
class |
FileUploadLimitExceededException
Exception that is thrown when the post size of a multipart/form post used for file
upload exceeds the configured maximum size.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AnnotatedClassActionResolver.assertGetContextWorks(ActionBean bean)
Since many down stream parts of Stripes rely on the ActionBean properly returning the
context it is given, we'll just test it up front.
|
protected void |
StripesRequestWrapper.constructMultipartWrapper(javax.servlet.http.HttpServletRequest request)
Responsible for constructing the MultipartWrapper object and setting it on to
the instance variable 'multipart'.
|
ActionBean |
ActionResolver.getActionBean(ActionBeanContext context)
Resolves the Class, implementing ActionBean, that should be used to handle the request.
|
ActionBean |
AnnotatedClassActionResolver.getActionBean(ActionBeanContext context)
Gets the logical name of the ActionBean that should handle the request.
|
ActionBean |
ActionResolver.getActionBean(ActionBeanContext context,
java.lang.String path)
Returns the ActionBean class that responds to the path provided.
|
ActionBean |
AnnotatedClassActionResolver.getActionBean(ActionBeanContext context,
java.lang.String path)
Returns the ActionBean class that is bound to the UrlBinding supplied.
|
ActionBean |
NameBasedActionResolver.getActionBean(ActionBeanContext context,
java.lang.String urlBinding)
Overridden to trap the exception that is thrown when a URL cannot be mapped to an
ActionBean and then attempt to construct a dummy ActionBean that will forward the
user to an appropriate view.
|
java.lang.reflect.Method |
ActionResolver.getDefaultHandler(java.lang.Class<? extends ActionBean> bean)
Locates and returns the default handler method that should be invoked when no specific
event is named.
|
java.lang.reflect.Method |
AnnotatedClassActionResolver.getDefaultHandler(java.lang.Class<? extends ActionBean> bean)
Returns the Method that is the default handler for events in the ActionBean class supplied.
|
java.lang.String |
ActionResolver.getHandledEvent(java.lang.reflect.Method handler)
Returns the name of the event to which a given handler method responds.
|
java.lang.reflect.Method |
ActionResolver.getHandler(java.lang.Class<? extends ActionBean> bean,
java.lang.String eventName)
Resolves the Method which handles the named event.
|
java.lang.reflect.Method |
AnnotatedClassActionResolver.getHandler(java.lang.Class<? extends ActionBean> bean,
java.lang.String eventName)
Uses the Maps constructed earlier to locate the Method which can handle the event.
|
protected StripesRequestWrapper |
StripesFilter.wrapRequest(javax.servlet.http.HttpServletRequest servletRequest)
Wraps the HttpServletRequest with a StripesServletRequest.
|
Constructor and Description |
---|
StripesRequestWrapper(javax.servlet.http.HttpServletRequest request)
Constructor that will, if the POST is multi-part, parse the POST data and make it
available through the normal channels.
|
Modifier and Type | Class and Description |
---|---|
class |
ActionBeanNotFoundException
Thrown when the action resolver can not find an
ActionBean bound to the requested URL. |
? Copyright 2005-2006, Stripes Development Team.