Example usage for org.springframework.security.web.authentication AnonymousAuthenticationFilter subclass-usage

List of usage examples for org.springframework.security.web.authentication AnonymousAuthenticationFilter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.web.authentication AnonymousAuthenticationFilter subclass-usage.

Usage

From source file org.opencastproject.kernel.security.TrustedAnonymousAuthenticationFilter.java

/**
 * This is a special implementation of the anonymous filter that prevents the filter from going with the anonymous user
 * if there is the potential for a real authentication coming later on.
 * <p>
 * The filter is needed in order to allow for security configurations where a url is open to the public but at the same
 * needs to support authorization to Matterhorn's {@link org.opencastproject.security.api.TrustedHttpClient}.

From source file org.apache.nifi.minifi.c2.security.authentication.C2AnonymousAuthenticationFilter.java

public class C2AnonymousAuthenticationFilter extends AnonymousAuthenticationFilter {
    public static final String ANONYMOUS = "anonymous";

    public C2AnonymousAuthenticationFilter() {
        super(ANONYMOUS);
    }

From source file org.apache.nifi.web.security.anonymous.NiFiAnonymousUserFilter.java

/**
 * Custom AnonymouseAuthenticationFilter used to grant additional authorities depending on the current operating mode.
 */
public class NiFiAnonymousUserFilter extends AnonymousAuthenticationFilter {

    private static final Logger anonymousUserFilterLogger = LoggerFactory.getLogger(NiFiAnonymousUserFilter.class);