Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Rename class
Browse files Browse the repository at this point in the history
  • Loading branch information
mwithi committed Dec 29, 2023
1 parent bb85c43 commit 85d7142
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/isf/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

import org.isf.permissions.manager.PermissionManager;
import org.isf.security.CustomLogoutHandler;
import org.isf.security.CustomAuditorAwareImpl;
import org.isf.security.ApiAuditorAwareImpl;
import org.isf.security.OHSimpleUrlAuthenticationSuccessHandler;
import org.isf.security.RestAuthenticationEntryPoint;
import org.isf.security.jwt.JWTConfigurer;
Expand Down Expand Up @@ -343,6 +343,6 @@ public RoleHierarchy roleHierarchy() {

@Bean
public AuditorAwareInterface auditorAwareCustomizer() {
return new CustomAuditorAwareImpl();
return new ApiAuditorAwareImpl();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;

public class CustomAuditorAwareImpl implements AuditorAwareInterface {
public class ApiAuditorAwareImpl implements AuditorAwareInterface {

@Override
public Optional<String> getCurrentAuditor() {
Expand Down

0 comments on commit 85d7142

Please sign in to comment.