Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
3de21d55
Commit
3de21d55
authored
Jul 12, 2019
by
Sascha Herzinger
Browse files
Custom* -> *Impl
parent
d3b633fd
Changes
3
Hide whitespace changes
Inline
Side-by-side
web/src/main/java/lcsb/mapviewer/web/config/
Custom
AuthenticationFailureHandler.java
→
web/src/main/java/lcsb/mapviewer/web/config/AuthenticationFailureHandler
Impl
.java
View file @
3de21d55
...
...
@@ -11,7 +11,7 @@ import javax.servlet.http.HttpServletResponse;
import
java.io.IOException
;
@Component
public
class
Custom
AuthenticationFailureHandler
implements
AuthenticationFailureHandler
{
public
class
AuthenticationFailureHandler
Impl
implements
AuthenticationFailureHandler
{
@Override
public
void
onAuthenticationFailure
(
...
...
web/src/main/java/lcsb/mapviewer/web/config/
Custom
AuthenticationSuccessHandler.java
→
web/src/main/java/lcsb/mapviewer/web/config/AuthenticationSuccessHandler
Impl
.java
View file @
3de21d55
...
...
@@ -21,13 +21,16 @@ import lcsb.mapviewer.model.user.User;
import
lcsb.mapviewer.services.interfaces.IUserService
;
@Component
public
class
Custom
AuthenticationSuccessHandler
implements
AuthenticationSuccessHandler
{
public
class
AuthenticationSuccessHandler
Impl
implements
AuthenticationSuccessHandler
{
private
static
Logger
logger
=
LogManager
.
getLogger
(
Custom
AuthenticationSuccessHandler
.
class
);
private
static
Logger
logger
=
LogManager
.
getLogger
(
AuthenticationSuccessHandler
Impl
.
class
);
@Autowired
private
IUserService
userService
;
public
AuthenticationSuccessHandlerImpl
(
IUserService
userService
)
{
this
.
userService
=
userService
;
}
@Override
public
void
onAuthenticationSuccess
(
HttpServletRequest
request
,
...
...
web/src/main/java/lcsb/mapviewer/web/config/
Custom
LogoutSuccessHandler.java
→
web/src/main/java/lcsb/mapviewer/web/config/LogoutSuccessHandler
Impl
.java
View file @
3de21d55
...
...
@@ -10,7 +10,7 @@ import javax.servlet.http.HttpServletResponse;
import
java.io.IOException
;
@Service
public
class
Custom
LogoutSuccessHandler
implements
LogoutSuccessHandler
{
public
class
LogoutSuccessHandler
Impl
implements
LogoutSuccessHandler
{
@Override
public
void
onLogoutSuccess
(
HttpServletRequest
request
,
HttpServletResponse
response
,
Authentication
authentication
)
throws
IOException
,
ServletException
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment