Home | History | Annotate | Download | only in struts2

Lines Matching refs:interceptor

29 import com.opensymphony.xwork2.interceptor.Interceptor;
132 // Validate the interceptor class.
133 for (ProvidedInterceptor interceptor : interceptors) {
134 interceptor.validate(binder());
140 for (ProvidedInterceptor interceptor : interceptors) {
141 interceptor.inject();
148 public Interceptor buildInterceptor(InterceptorConfig interceptorConfig,
150 // Ensure the interceptor class is present.
151 Class<? extends Interceptor> interceptorClass;
153 interceptorClass = (Class<? extends Interceptor>)
165 private Interceptor superBuildInterceptor(InterceptorConfig interceptorConfig,
170 private class ProvidedInterceptor implements Interceptor {
176 private final Class<? extends Interceptor> interceptorClass;
177 private Interceptor delegate;
180 Class<? extends Interceptor> interceptorClass) {
194 // Make sure it implements Interceptor.
195 if (!Interceptor.class.isAssignableFrom(interceptorClass)) {
197 + Interceptor.class.getName() + ".");
223 private static boolean hasScope(Class<? extends Interceptor> interceptorClass) {