View Javadoc

1   // ========================================================================
2   // Copyright (c) 2009-2010 Mort Bay Consulting Pty. Ltd.
3   // ------------------------------------------------------------------------
4   // All rights reserved. This program and the accompanying materials
5   // are made available under the terms of the Eclipse Public License v1.0
6   // and Apache License v2.0 which accompanies this distribution.
7   // The Eclipse Public License is available at 
8   // http://www.eclipse.org/legal/epl-v10.html
9   // The Apache License v2.0 is available at
10  // http://www.opensource.org/licenses/apache2.0.php
11  // You may elect to redistribute this code under either of these licenses. 
12  // ========================================================================
13  
14  package org.eclipse.jetty.annotations;
15  
16  import java.util.List;
17  
18  import org.eclipse.jetty.annotations.AnnotationParser.DiscoverableAnnotationHandler;
19  import org.eclipse.jetty.annotations.AnnotationParser.Value;
20  import org.eclipse.jetty.util.log.Log;
21  import org.eclipse.jetty.webapp.DiscoveredAnnotation;
22  import org.eclipse.jetty.webapp.WebAppContext;
23  
24  /**
25   * WebFilterAnnotationHandler
26   *
27   *
28   */
29  public class WebFilterAnnotationHandler extends AbstractDiscoverableAnnotationHandler
30  {
31      public WebFilterAnnotationHandler (WebAppContext context)
32      {
33          super(context);
34      }
35  
36      public void handleClass(String className, int version, int access, String signature, String superName, String[] interfaces, String annotation,
37                              List<Value> values)
38      {
39          WebFilterAnnotation wfAnnotation = new WebFilterAnnotation(_context, className);
40          addAnnotation(wfAnnotation);
41      }
42  
43      public void handleField(String className, String fieldName, int access, String fieldType, String signature, Object value, String annotation,
44                              List<Value> values)
45      {
46          Log.warn ("@WebFilter not applicable for fields: "+className+"."+fieldName);
47      }
48  
49      public void handleMethod(String className, String methodName, int access, String params, String signature, String[] exceptions, String annotation,
50                               List<Value> values)
51      {
52          Log.warn ("@WebFilter not applicable for methods: "+className+"."+methodName+" "+signature);
53      }
54  
55  }