Uses of Interface
net.kldp.beat.interceptor.SystemInterceptor

Packages that use SystemInterceptor
net.kldp.beat.action   
net.kldp.beat.web.interceptor   
 

Uses of SystemInterceptor in net.kldp.beat.action
 

Fields in net.kldp.beat.action with type parameters of type SystemInterceptor
private  java.util.Map<SystemInterceptor,java.lang.annotation.Annotation> InterceptorStack.systemInterceptors
           
 

Methods in net.kldp.beat.action that return types with arguments of type SystemInterceptor
 java.util.Map<SystemInterceptor,java.lang.annotation.Annotation> InterceptorStack.getSystemInterceptors()
          액션이 정의한 시스템 인터셉터를 리턴합니다.
 

Method parameters in net.kldp.beat.action with type arguments of type SystemInterceptor
private  void ActionService.executeSystemInterceptor(java.lang.Object action, java.util.Map<SystemInterceptor,java.lang.annotation.Annotation> systemInterceptors)
           
 

Uses of SystemInterceptor in net.kldp.beat.web.interceptor
 

Classes in net.kldp.beat.web.interceptor that implement SystemInterceptor
(package private)  class ApplicationMapInterceptor
          Application scope의 맵을 주입하는 인터셉터입니다.
 class InterceptorFactory
          인터셉터의 인스턴스를 생성하고 리턴하는 팩터리 클래스입니다.
(package private)  class MultipartInterceptor
          Multipart인터셉터입니다.
 class ParameterInterceptor
          요청 파라미터를 액션에 주입합니다.
(package private)  class ParameterMapInterceptor
          요청 파라미터를 맵으로 주입합니다.
(package private)  class RequestMapInterceptor
          Request scope의 맵을 주입합니다.
(package private)  class ServletContextInterceptor
          ServletContext객체를 주입합니다.
(package private)  class ServletDispatcherInterceptor
          ServletDispatcher 객체를 주입합니다.
(package private)  class ServletRequestInterceptor
          ServletRequest객체를 주입합니다.
(package private)  class ServletResponseInterceptor
          ServletResponse객체를 주입합니다.
(package private)  class SessionMapInterceptor
          세션을 맵으로 주입합니다.
(package private)  class ValidationInterceptor
          폼 입력값을 검증합니다.
 

Fields in net.kldp.beat.web.interceptor with type parameters of type SystemInterceptor
private static java.util.HashMap<java.lang.Class<? extends java.lang.annotation.Annotation>,SystemInterceptor> InterceptorFactory.interceptors
           
 

Method parameters in net.kldp.beat.web.interceptor with type arguments of type SystemInterceptor
static void InterceptorFactory.intecept(java.lang.Object action, java.util.Map<SystemInterceptor,java.lang.annotation.Annotation> systemInterceptors, ActionContext context)
          액션 객체에 인터셉터를 적용합니다.