Class UriMatcher

java.lang.Object
com.atlassian.jira.util.UriMatcher

public class UriMatcher extends Object
Utility class for matching URIs.
Since:
v5.0
  • Field Details

  • Constructor Details

    • UriMatcher

      public UriMatcher()
  • Method Details

    • isBaseEqual

      public static boolean isBaseEqual(URI baseUri, URI testUri)
      Checks if the testUri belongs to the baseUri. For example, www.foo.com/bar belongs to www.foo.com.
      Parameters:
      baseUri - the base URI
      testUri - the URI to match against the base URI
      Returns:
      true if the testUri belongs to the baseUri, false if otherwise