1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package com.fatwire.gst.foundation.controller.action;
18
19 import javax.servlet.ServletContext;
20
21 import COM.FutureTense.Interfaces.ICS;
22
23
24
25
26
27
28
29
30
31 public class ActionFrameworkController extends AbstractActionController {
32 public ActionFrameworkController(ICS ics) {
33 super(ics);
34
35 }
36
37 protected final ActionLocator getActionLocator() {
38
39
40 final ServletContext servletContext = getServletContext();
41 ActionLocator l = ActionLocatorUtils.getActionLocator(servletContext);
42 return l;
43 }
44
45 @Override
46 protected ActionNameResolver getActionNameResolver() {
47 final ServletContext servletContext = getServletContext();
48 ActionNameResolver l = ActionNameResolverUtils.getActionNameResolver(servletContext);
49 return l;
50 }
51
52 }