1   package com.atlassian.security.auth.trustedapps;
2   
3   /**
4    * Checks whether the supplied url path (after the context) is valid.
5    */
6   public interface URLMatcher
7   {
8       /**
9        * Check if this URL path is allowed to be accessed by trusted calls
10       */
11      boolean match(String urlPath);
12  }