Package org.apache.struts2
Interface UnknownHandlerManager
- All Known Implementing Classes:
- DefaultUnknownHandlerManager
public interface UnknownHandlerManager
An unknown handler manager contains a list of UnknownHandler and iterates on them by order
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionhandleUnknownAction(String namespace, String actionName) handleUnknownMethod(Object action, String methodName) Tries to handle passed methodName if cannot find method should rehandleUnknownResult(ActionContext actionContext, String actionName, ActionConfig actionConfig, String resultCode) boolean
- 
Method Details- 
handleUnknownResultResult handleUnknownResult(ActionContext actionContext, String actionName, ActionConfig actionConfig, String resultCode) 
- 
handleUnknownMethodTries to handle passed methodName if cannot find method should re- Parameters:
- action- Action's instance
- methodName- method name to handle
- Returns:
- Result representing result of given action method
- Throws:
- NoSuchMethodException- if method can be handled by defined UnknownHandlers
 
- 
handleUnknownAction
- 
hasUnknownHandlersboolean hasUnknownHandlers()
- 
getUnknownHandlersList<UnknownHandler> getUnknownHandlers()
 
-