All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.formkiq.server.config.NonOAuthRequestMatcher Maven / Gradle / Ivy

package com.formkiq.server.config;

import javax.servlet.http.HttpServletRequest;

/**
 * Matches Non Oauth Requests.
 *
 */
public class NonOAuthRequestMatcher extends OAuthRequestedMatcher {

    @Override
    public boolean matches(final HttpServletRequest request) {
        return !super.matches(request);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy