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.country.pagemode;
20
21 import org.springframework.beans.factory.annotation.Autowired;
22
23 import com.hack23.cia.web.impl.ui.application.views.common.menufactory.api.CountryMenuItemFactory;
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 AbstractCountryPageModContentFactoryImpl extends AbstractPageModContentFactoryImpl {
31
32
33 public static final String NAME = UserViews.COUNTRY_RANKING_VIEW_NAME;
34
35
36 @Autowired
37 private CountryMenuItemFactory countryMenuItemFactory;
38
39
40
41
42 AbstractCountryPageModContentFactoryImpl() {
43 super();
44 }
45
46
47
48
49
50
51 protected final CountryMenuItemFactory getCountryMenuItemFactory() {
52 return countryMenuItemFactory;
53 }
54
55 }