View Javadoc

1   package net.trajano.twiff;
2   
3   /***
4    * This is the configuration data for all servlets.
5    * 
6    * @author Archimedes Trajano
7    */
8   public interface Configuration {
9       /***
10       * Returns the name of the token field.
11       * 
12       * @return the token field name.
13       */
14      String getTokenFieldName();
15  
16      /***
17       * Returns the package context.
18       * 
19       * @return the package context.
20       */
21      String getPackageContext();
22  }