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

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

Uses of UserInterceptor in net.kldp.beat.action
 

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

Methods in net.kldp.beat.action that return types with arguments of type UserInterceptor
 java.util.Map<UserInterceptor,java.lang.annotation.Annotation> InterceptorStack.getAfterInterceptors()
          액션이 정의한 사용자 후처리 인터셉터를 리턴합니다.
 java.util.Map<UserInterceptor,java.lang.annotation.Annotation> InterceptorStack.getBeforeInterceptors()
          액션이 정의한 사용자 전처리 인터셉터를 리턴합니다.
 

Method parameters in net.kldp.beat.action with type arguments of type UserInterceptor
private  boolean ActionService.executeInterceptors(java.lang.Object action, java.util.Map<UserInterceptor,java.lang.annotation.Annotation> interceptors)
           
private  void ActionService.initInterceptors(java.util.Map<UserInterceptor,java.lang.annotation.Annotation> interceptors)
           
 

Uses of UserInterceptor in net.kldp.beat.interceptor
 

Subinterfaces of UserInterceptor in net.kldp.beat.interceptor
 interface AfterInterceptor
          이 인터페이스를 구현한 인터셉터는 액션이 처리되기 이후에 실행되어야 합니다.
 interface BeforeInterceptor
          이 인터페이스를 구현한 인터셉터는 액션이 처리되기 이전에 실행되어야 합니다.
 

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

Methods in net.kldp.beat.web.interceptor with parameters of type UserInterceptor
static void InterceptorFactory.intecept(UserInterceptor target, ActionContext context, java.lang.annotation.Annotation annotation)
          사용자 인터셉터 객체에 시스템 인터셉터를 적용합니다.