1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package com.hack23.cia.web.impl.ui.application.views.user.committee.pagemode;
20
21 import org.springframework.beans.factory.annotation.Autowired;
22
23 import com.hack23.cia.web.impl.ui.application.views.common.menufactory.api.CommitteeMenuItemFactory;
24 import com.hack23.cia.web.impl.ui.application.views.common.pagemode.AbstractPageModContentFactoryImpl;
25 import com.hack23.cia.web.impl.ui.application.views.common.viewnames.UserViews;
26
27
28
29
30 abstract class AbstractCommitteePageModContentFactoryImpl extends AbstractPageModContentFactoryImpl {
31
32
33 public static final String NAME = UserViews.COMMITTEE_VIEW_NAME;
34
35
36 @Autowired
37 private CommitteeMenuItemFactory committeeMenuItemFactory;
38
39
40
41
42 AbstractCommitteePageModContentFactoryImpl() {
43 super();
44 }
45
46
47
48
49
50
51
52 protected final CommitteeMenuItemFactory getCommitteeMenuItemFactory() {
53 return committeeMenuItemFactory;
54 }
55
56 }