public class

UriMatcher

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

Class Overview

Utility class for matching URIs.

Summary

Public Constructors
UriMatcher()
Public Methods
static boolean isBaseEqual(URI baseUri, URI testUri)
Checks if the testUri belongs to the baseUri.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public UriMatcher ()

Public Methods

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