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 * @return the search resource name
11 */
12 String getName();
13
14 /**
15 * @return the search resource url
16 */
17 String getUrl();
18
19 /**
20 * @return the search resource type
21 */
22 String getType();
23 }