1
2
3
4
5
6
7
8 package net.stff.util;
9
10 import javax.servlet.http.HttpServletRequest;
11
12 /***
13 * @author buntekuh
14 *
15 * <br>This interface allows creation of a Bean using the default constructor, initialising it afterwards passing the HttpServletRequest.
16 */
17 public interface Initializable {
18
19 /***
20 * This single method allows initalization using a HttpServletRequest
21 * @param request the HttpServletRequest to be passed.
22 */
23 public void init(HttpServletRequest request);
24 }