View Javadoc

1   package net.trajano.twiff;
2   
3   /***
4    * This is the configuration data for servlets that perform views.
5    * 
6    * @author Archimedes Trajano
7    */
8   public interface ViewServletConfiguration extends Configuration {
9       /***
10       * <p>
11       * This is a URL pattern that the view servlet includes in the request
12       * dispatcher to do the actual display. It replaces the "*" character with
13       * the page name. This dispatch pattern is what gets included into the
14       * servlet output.
15       * </p>
16       * 
17       * @return the pattern.
18       */
19      String getDispatchPattern();
20  }