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

Packages that use Interceptor
net.kldp.beat.interceptor   
net.kldp.beat.web.interceptor   
 

Uses of Interceptor in net.kldp.beat.interceptor
 

Subinterfaces of Interceptor in net.kldp.beat.interceptor
 interface AfterInterceptor
          이 인터페이스를 구현한 인터셉터는 액션이 처리되기 이후에 실행되어야 합니다.
 interface BeforeInterceptor
          이 인터페이스를 구현한 인터셉터는 액션이 처리되기 이전에 실행되어야 합니다.
 interface SystemInterceptor
          시스템 종속적인 인터셉터를 위한 인터페이스 입니다.
 interface UserInterceptor
          사용자 정의 인터셉터를 위한 인터페이스입니다.
 

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

Classes in net.kldp.beat.web.interceptor that implement Interceptor
(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
          폼 입력값을 검증합니다.
 

Methods in net.kldp.beat.web.interceptor that return Interceptor
private static Interceptor InterceptorFactory.createUserInterceptor(java.lang.Class<? extends java.lang.annotation.Annotation> clazz)
          사용자가 web.interceptor 패키지에 작성한 인터셉터의 인스턴스를 생성하여 리턴합니다.
static Interceptor InterceptorFactory.getInterceptor(java.lang.annotation.Annotation annotation)
          어노테이션에 맞는 인터셉터를 리턴합니다.