|
1 | | -package org.woehlke.simpleworklist.model.services; |
2 | | - |
3 | | -import org.woehlke.simpleworklist.oodm.entities.Context; |
4 | | -import org.woehlke.simpleworklist.oodm.entities.Project; |
5 | | -import org.woehlke.simpleworklist.oodm.entities.Task; |
6 | | -import org.woehlke.simpleworklist.oodm.enumerations.TaskState; |
7 | | -import org.woehlke.simpleworklist.model.beans.Breadcrumb; |
8 | | - |
9 | | -import java.util.Locale; |
10 | | - |
11 | | -public interface BreadcrumbService { |
12 | | - |
13 | | - Breadcrumb getBreadcrumbForShowRootProject(Locale locale); |
14 | | - |
15 | | - Breadcrumb getBreadcrumbForShowOneProject(Project thisProject, Locale locale); |
16 | | - |
17 | | - Breadcrumb getBreadcrumbForTaskstate(TaskState taskstate, Locale locale); |
18 | | - |
19 | | - Breadcrumb getBreadcrumbForTaskstateAll(Locale locale); |
20 | | - |
21 | | - Breadcrumb getBreadcrumbForTaskInTaskstate(String taskstate, Task task, Locale locale); |
22 | | - |
23 | | - Breadcrumb getBreadcrumbForTaskInProject(Project thisProject, Task task, Locale locale); |
24 | | - |
25 | | - Breadcrumb getBreadcrumbForUserProfileAndMenu(Locale locale); |
26 | | - |
27 | | - Breadcrumb getBreadcrumbForUserChangeName(Locale locale); |
28 | | - |
29 | | - Breadcrumb getBreadcrumbForUserChangePassword(Locale locale); |
30 | | - |
31 | | - Breadcrumb getBreadcrumbForUserContexts(Locale locale); |
32 | | - |
33 | | - Breadcrumb getBreadcrumbForUserContextAdd(Locale locale); |
34 | | - |
35 | | - Breadcrumb getBreadcrumbForUserContextEdit(Locale locale, Context context); |
36 | | - |
37 | | - Breadcrumb getBreadcrumbForUserContextDelete(Locale locale, Context context); |
38 | | - |
39 | | - Breadcrumb getBreadcrumbForUserChangeLanguage(Locale locale); |
40 | | - |
41 | | - Breadcrumb getBreadcrumbForMessagesBetweenCurrentAndOtherUser(Locale locale); |
42 | | - |
43 | | - Breadcrumb getBreadcrumbForSearchResults(Locale locale); |
44 | | - |
45 | | -} |
| 1 | +package org.woehlke.simpleworklist.breadcrumb; |
| 2 | + |
| 3 | +import org.woehlke.simpleworklist.oodm.entities.Context; |
| 4 | +import org.woehlke.simpleworklist.oodm.entities.Project; |
| 5 | +import org.woehlke.simpleworklist.oodm.entities.Task; |
| 6 | +import org.woehlke.simpleworklist.oodm.enumerations.TaskState; |
| 7 | +import org.woehlke.simpleworklist.model.beans.Breadcrumb; |
| 8 | + |
| 9 | +import java.util.Locale; |
| 10 | + |
| 11 | +public interface BreadcrumbService { |
| 12 | + |
| 13 | + Breadcrumb getBreadcrumbForShowRootProject(Locale locale); |
| 14 | + |
| 15 | + Breadcrumb getBreadcrumbForShowOneProject(Project thisProject, Locale locale); |
| 16 | + |
| 17 | + Breadcrumb getBreadcrumbForTaskstate(TaskState taskstate, Locale locale); |
| 18 | + |
| 19 | + Breadcrumb getBreadcrumbForTaskstateAll(Locale locale); |
| 20 | + |
| 21 | + Breadcrumb getBreadcrumbForTaskInTaskstate(String taskstate, Task task, Locale locale); |
| 22 | + |
| 23 | + Breadcrumb getBreadcrumbForTaskInProject(Project thisProject, Task task, Locale locale); |
| 24 | + |
| 25 | + Breadcrumb getBreadcrumbForUserProfileAndMenu(Locale locale); |
| 26 | + |
| 27 | + Breadcrumb getBreadcrumbForUserChangeName(Locale locale); |
| 28 | + |
| 29 | + Breadcrumb getBreadcrumbForUserChangePassword(Locale locale); |
| 30 | + |
| 31 | + Breadcrumb getBreadcrumbForUserContexts(Locale locale); |
| 32 | + |
| 33 | + Breadcrumb getBreadcrumbForUserContextAdd(Locale locale); |
| 34 | + |
| 35 | + Breadcrumb getBreadcrumbForUserContextEdit(Locale locale, Context context); |
| 36 | + |
| 37 | + Breadcrumb getBreadcrumbForUserContextDelete(Locale locale, Context context); |
| 38 | + |
| 39 | + Breadcrumb getBreadcrumbForUserChangeLanguage(Locale locale); |
| 40 | + |
| 41 | + Breadcrumb getBreadcrumbForMessagesBetweenCurrentAndOtherUser(Locale locale); |
| 42 | + |
| 43 | + Breadcrumb getBreadcrumbForSearchResults(Locale locale); |
| 44 | + |
| 45 | +} |
0 commit comments