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

com.netflix.spinnaker.gate.config.RequestMatcherProvider Maven / Gradle / Ivy

package com.netflix.spinnaker.gate.config;

import org.springframework.security.web.util.matcher.AnyRequestMatcher;
import org.springframework.security.web.util.matcher.RequestMatcher;

public interface RequestMatcherProvider {

  default RequestMatcher requestMatcher() {
    return AnyRequestMatcher.INSTANCE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy