Skip to content
This repository has been archived by the owner on Dec 10, 2023. It is now read-only.

Commit

Permalink
Update remaining docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak authored and Bartosz Nowak committed Apr 22, 2022
1 parent 3b28149 commit 642f6e6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public void loginFail(HttpServletRequest request,
*
* @see org.springframework.security.web.authentication.RememberMeServices#loginSuccess(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse,
* org.acegisecurity.Authentication)
* org.springframework.security.core.Authentication)
*/
@Override
public void loginSuccess(HttpServletRequest request,
Expand Down
14 changes: 7 additions & 7 deletions src/main/java/de/theit/jenkins/crowd/CrowdUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public CrowdUser(User pUser, List<GrantedAuthority> authorities) {
/**
* {@inheritDoc}
*
* @see org.acegisecurity.userdetails.UserDetails#getAuthorities()
* @see org.springframework.security.core.userdetails.UserDetails#getAuthorities()
*/
@Override
public Collection<GrantedAuthority> getAuthorities() {
Expand All @@ -76,7 +76,7 @@ public Collection<GrantedAuthority> getAuthorities() {
/**
* {@inheritDoc}
*
* @see org.acegisecurity.userdetails.UserDetails#getPassword()
* @see org.springframework.security.core.userdetails.UserDetails#getPassword()
*/
@Override
public String getPassword() {
Expand All @@ -86,7 +86,7 @@ public String getPassword() {
/**
* {@inheritDoc}
*
* @see org.acegisecurity.userdetails.UserDetails#getUsername()
* @see org.springframework.security.core.userdetails.UserDetails#getUsername()
*/
@Override
public String getUsername() {
Expand All @@ -96,7 +96,7 @@ public String getUsername() {
/**
* {@inheritDoc}
*
* @see org.acegisecurity.userdetails.UserDetails#isAccountNonExpired()
* @see org.springframework.security.core.userdetails.UserDetails#isAccountNonExpired()
*/
@Override
public boolean isAccountNonExpired() {
Expand All @@ -106,7 +106,7 @@ public boolean isAccountNonExpired() {
/**
* {@inheritDoc}
*
* @see org.acegisecurity.userdetails.UserDetails#isAccountNonLocked()
* @see org.springframework.security.core.userdetails.UserDetails#isAccountNonLocked()
*/
@Override
public boolean isAccountNonLocked() {
Expand All @@ -116,7 +116,7 @@ public boolean isAccountNonLocked() {
/**
* {@inheritDoc}
*
* @see org.acegisecurity.userdetails.UserDetails#isCredentialsNonExpired()
* @see org.springframework.security.core.userdetails.UserDetails#isCredentialsNonExpired()
*/
@Override
public boolean isCredentialsNonExpired() {
Expand All @@ -126,7 +126,7 @@ public boolean isCredentialsNonExpired() {
/**
* {@inheritDoc}
*
* @see org.acegisecurity.userdetails.UserDetails#isEnabled()
* @see org.springframework.security.core.userdetails.UserDetails#isEnabled()
*/
@Override
public boolean isEnabled() {
Expand Down

0 comments on commit 642f6e6

Please sign in to comment.