Package com.atlassian.gadgets.plugins
Interface DashboardItemModule.DirectoryDefinition
- Enclosing interface:
- DashboardItemModule
public static interface DashboardItemModule.DirectoryDefinition
Specification of the dashboard item.
-
Method Summary
Modifier and TypeMethodDescriptionAuthor/Vendor of the dashboard item.Returns categories of this directory definition.io.atlassian.fugue.Option<URI>Returns an absolute URL of the thumbnail.getTitle()The title of the dashboard item.io.atlassian.fugue.Option<String>The optional i18n key of the title of the dashboard item.
-
Method Details
-
getTitle
String getTitle()The title of the dashboard item. Can't be null. -
getTitleI18nKey
io.atlassian.fugue.Option<String> getTitleI18nKey()The optional i18n key of the title of the dashboard item. Can't be null. -
getAuthor
DashboardItemModule.Author getAuthor()Author/Vendor of the dashboard item. Can't be null. -
getCategories
Returns categories of this directory definition. Can't be null. -
getThumbnail
io.atlassian.fugue.Option<URI> getThumbnail()Returns an absolute URL of the thumbnail.
-