@@ -22,7 +22,7 @@ import org.slf4j.LoggerFactory;
|
||||
*
|
||||
*
|
||||
*/
|
||||
public abstract class AbstractControllerAuthenticationFilter implements PreAuthenficationFilter {
|
||||
public abstract class AbstractControllerAuthenticationFilter implements PreAuthentificationFilter {
|
||||
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(AbstractControllerAuthenticationFilter.class);
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ import org.eclipse.hawkbit.dmf.json.model.TenantSecurityToken;
|
||||
*
|
||||
* @see DdiSecurityProperties
|
||||
*/
|
||||
public class ControllerPreAuthenticatedAnonymousFilter implements PreAuthenficationFilter {
|
||||
public class ControllerPreAuthenticatedAnonymousFilter implements PreAuthentificationFilter {
|
||||
|
||||
private final DdiSecurityProperties ddiSecurityConfiguration;
|
||||
|
||||
|
||||
@@ -16,12 +16,9 @@ import org.springframework.security.core.Authentication;
|
||||
import org.springframework.security.core.GrantedAuthority;
|
||||
|
||||
/**
|
||||
* Interface for Pre Authenfication.
|
||||
*
|
||||
*
|
||||
*
|
||||
* Interface for Pre Authentification.
|
||||
*/
|
||||
public interface PreAuthenficationFilter {
|
||||
public interface PreAuthentificationFilter {
|
||||
|
||||
/**
|
||||
* Check if the filter is enabled.
|
||||
@@ -60,6 +57,6 @@ public interface PreAuthenficationFilter {
|
||||
*/
|
||||
default Collection<GrantedAuthority> getSuccessfulAuthenticationAuthorities() {
|
||||
return Collections.emptyList();
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user