View Javadoc

1   package com.atlassian.sal.api.search;
2   
3   /**
4    * Defines the more information about the search resource (ie. JIRA, Wiki).
5    *
6    * @since 2.0
7    */
8   public interface ResourceType
9   {
10      /**
11       * @return the search resource name
12       */
13      String getName();
14  
15      /**
16       * @return the search resource url
17       */
18      String getUrl();
19  
20      /**
21       * @return the search resource type
22       */
23      String getType();
24  }