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

Packages that use UserInterceptor
net.kldp.beat.action   
net.kldp.beat.interceptor   
net.kldp.beat.interceptor.pool   
net.kldp.beat.system.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()
          액션이 정의한 사용자 전처리 인터셉터를 리턴합니다.
 

Methods in net.kldp.beat.action with parameters of type UserInterceptor
private  void InterceptorInvoker.destroy(UserInterceptor interceptor)
           
 

Method parameters in net.kldp.beat.action with type arguments of type UserInterceptor
private  boolean InterceptorInvoker.executeInterceptors(java.lang.Object action, java.util.Map<UserInterceptor,java.lang.annotation.Annotation> interceptors)
           
private  void InterceptorInvoker.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.interceptor.pool
 

Fields in net.kldp.beat.interceptor.pool with type parameters of type UserInterceptor
private  java.lang.Class<? extends UserInterceptor> UserInterceptorContainer.interceptor
           
private static java.util.Map<java.lang.String,java.lang.Class<? extends UserInterceptor>> UserInterceptorClassPool.interceptorClasses
           
 

Methods in net.kldp.beat.interceptor.pool that return UserInterceptor
 UserInterceptor UserInterceptorContainer.getInterceptor(ActionContext context)
          사용자 인터셉터의 인터셉터 객체를 리턴합니다.
 

Methods in net.kldp.beat.interceptor.pool that return types with arguments of type UserInterceptor
static java.lang.Class<? extends UserInterceptor> UserInterceptorClassPool.get(java.lang.annotation.Annotation annotation)
          사용자 인터셉터 클래스를 불러들입니다.
static java.lang.Class<? extends UserInterceptor> UserInterceptorClassPool.get(java.lang.String simpleName)
          사용자 인터셉터 클래스를 불러들입니다.
 

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

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