Class AbstractMethodResolver

java.lang.Object
org.apache.struts.dispatcher.AbstractMethodResolver
All Implemented Interfaces:
Serializable, MethodResolver
Direct Known Subclasses:
ServletMethodResolver

public abstract class AbstractMethodResolver extends Object implements MethodResolver
This abstract class is the stock template for resolving methods for a Dispatcher. The implementation handles methods that accept no arguments or only an ActionContext instance:
  • return_type execute()
  • return_type execute(ActionContext context)
Since:
Struts 1.4
Version:
$Rev$
See Also:
  • Field Details

    • EMPTY_ARGUMENTS

      protected static final Object[] EMPTY_ARGUMENTS
      The argument listing for a method without arguments.
      See Also:
    • EMPTY_ARGUMENT_TYPES

      protected static final Class<?>[] EMPTY_ARGUMENT_TYPES
      The type listing used for a method without arguments.
      See Also:
  • Constructor Details

    • AbstractMethodResolver

      public AbstractMethodResolver()
  • Method Details