This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task-Url: #27 (Partial commit due to change local repository path)
- Loading branch information
Xelit3
committed
Nov 5, 2016
1 parent
4c28484
commit 7eff38a
Showing
5 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ | |
|
||
<context:component-scan base-package="gamerscreed.rocketstats.controller" /> | ||
|
||
|
||
</beans:beans> |
7 changes: 4 additions & 3 deletions
7
RocketStatsWeb/src/main/java/gamerscreed/rocketstats/controller/BaseController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
package gamerscreed.rocketstats.controller; | ||
|
||
import gamerscreed.profiler.structures.SecurityInfo; | ||
import org.springframework.web.servlet.ModelAndView; | ||
|
||
import gamerscreed.rocketstats.utilities.WebServiceControllerCallDispatcher; | ||
|
||
public abstract class BaseController { | ||
|
||
WebServiceControllerCallDispatcher callDispatcher; | ||
protected WebServiceControllerCallDispatcher callDispatcher; | ||
|
||
public BaseController(){ | ||
callDispatcher = new WebServiceControllerCallDispatcher(); | ||
} | ||
|
||
public abstract String viewIndex(SecurityInfo aSecurityInfo); | ||
public abstract ModelAndView viewIndex(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters