Uses of Class
net.sourceforge.stripes.controller.LifecycleStage

Packages that use LifecycleStage
net.sourceforge.stripes.config This package provides Configuration services for Stripes, including interfaces for locating configured components and configuration parameters. 
net.sourceforge.stripes.controller This package contains classes which form the core internals of Stripes. 
 

Uses of LifecycleStage in net.sourceforge.stripes.config
 

Methods in net.sourceforge.stripes.config that return types with arguments of type LifecycleStage
protected  Map<LifecycleStage,Collection<Interceptor>> DefaultConfiguration.initCoreInterceptors()
          Instantiates the core interceptors, allowing subclasses to override the default behavior
protected  Map<LifecycleStage,Collection<Interceptor>> RuntimeConfiguration.initCoreInterceptors()
          Looks for a list of class names separated by commas under the configuration key RuntimeConfiguration.CORE_INTERCEPTOR_LIST.
protected  Map<LifecycleStage,Collection<Interceptor>> DefaultConfiguration.initInterceptors()
          Allows subclasses to initialize a non-default Map of Interceptor instances.
protected  Map<LifecycleStage,Collection<Interceptor>> RuntimeConfiguration.initInterceptors()
          Looks for a list of class names separated by commas under the configuration key RuntimeConfiguration.INTERCEPTOR_LIST.
protected  Map<LifecycleStage,Collection<Interceptor>> RuntimeConfiguration.initInterceptors(List classes)
          Splits a comma-separated list of class names and maps each LifecycleStage to the interceptors in the list that intercept it.
 

Methods in net.sourceforge.stripes.config with parameters of type LifecycleStage
 Collection<Interceptor> Configuration.getInterceptors(LifecycleStage stage)
          Fetches the interceptors that should be executed around the lifecycle stage applied.
 Collection<Interceptor> DefaultConfiguration.getInterceptors(LifecycleStage stage)
          Returns a list of interceptors that should be executed around the lifecycle stage indicated.
 

Method parameters in net.sourceforge.stripes.config with type arguments of type LifecycleStage
protected  void DefaultConfiguration.addInterceptor(Map<LifecycleStage,Collection<Interceptor>> map, Interceptor interceptor)
          Adds the interceptor to the map, associating it with the LifecycleStages indicated by the Intercepts annotation.
protected  void DefaultConfiguration.mergeInterceptorMaps(Map<LifecycleStage,Collection<Interceptor>> dst, Map<LifecycleStage,Collection<Interceptor>> src)
          Merges the two Maps of LifecycleStage to Collection of Interceptor.
protected  void DefaultConfiguration.mergeInterceptorMaps(Map<LifecycleStage,Collection<Interceptor>> dst, Map<LifecycleStage,Collection<Interceptor>> src)
          Merges the two Maps of LifecycleStage to Collection of Interceptor.
 

Uses of LifecycleStage in net.sourceforge.stripes.controller
 

Methods in net.sourceforge.stripes.controller that return LifecycleStage
 LifecycleStage ExecutionContext.getLifecycleStage()
          Gets the current LifecycleStage being processed.
static LifecycleStage LifecycleStage.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LifecycleStage[] LifecycleStage.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.sourceforge.stripes.controller with parameters of type LifecycleStage
 void BeforeAfterMethodInterceptor.FilterMethods.addAfterMethod(LifecycleStage[] stages, Method method)
          Adds a method to be executed after the supplied LifecycleStages.
 void BeforeAfterMethodInterceptor.FilterMethods.addBeforeMethod(LifecycleStage[] stages, Method method)
          Adds a method to be executed before the supplied LifecycleStages.
 List<Method> BeforeAfterMethodInterceptor.FilterMethods.getAfterMethods(LifecycleStage stage)
          Gets the Before methods for the given LifecycleStage.
 List<Method> BeforeAfterMethodInterceptor.FilterMethods.getBeforeMethods(LifecycleStage stage)
          Gets the Before methods for the given LifecycleStage.
protected  Resolution BeforeAfterMethodInterceptor.invoke(ActionBean bean, Method m, LifecycleStage stage, Class<? extends Annotation> when)
          Helper method that will invoke the supplied method and manage any exceptions and returns from the object.
 void ExecutionContext.setLifecycleStage(LifecycleStage lifecycleStage)
          Sets the current stage in the request processing lifecycle.
 



? Copyright 2005-2006, Stripes Development Team.