org.needcoke.coke.web.util.PathMatcher Maven / Gradle / Ivy
package org.needcoke.coke.web.util;
public interface PathMatcher {
boolean isPattern(String path);
boolean match(String pattern, String path);
boolean matchStart(String pattern, String path);
}