View Javadoc

1   /***
2    * 
3    */
4   package net.trajano.twiff;
5   
6   import javax.servlet.http.HttpServletRequest;
7   
8   /***
9    * These provide lookups for data used by the
10   * {@link net.trajano.twiff.web.AttachmentServlet}.
11   * 
12   * @author Archimedes Trajano
13   */
14  public interface AttachmentPageLookup extends PageLookup {
15      /***
16       * This extracts the property name from the URL requested in the servlet
17       * request.
18       * 
19       * @param request
20       *                   the servlet request.
21       * @return the property name.
22       */
23      String getPropertyName(HttpServletRequest request);
24  }