1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.pluto.portalImpl.core;
21
22 import org.apache.pluto.portalImpl.factory.DynamicTitleServiceFactory;
23 import org.apache.pluto.services.title.DynamicTitleService;
24
25 public class DynamicTitleServiceFactoryImpl implements DynamicTitleServiceFactory {
26
27 private javax.servlet.ServletConfig servletConfig;
28
29 public DynamicTitleService getDynamicTitleService()
30 {
31 return new DynamicTitleServiceImpl();
32 }
33
34
35
36 public void init(javax.servlet.ServletConfig config, java.util.Map properties) throws Exception
37 {
38 servletConfig = config;
39 }
40
41 public void destroy() throws Exception
42 {
43 }
44
45 }