Class FeatureDiscoveryData.Notification
- java.lang.Object
-
- com.atlassian.bamboo.feature.discovery.FeatureDiscoveryData.Notification
-
- Enclosing class:
- FeatureDiscoveryData
public static class FeatureDiscoveryData.Notification extends Object
-
-
Constructor Summary
Constructors Constructor Description Notification(int id, @NotNull String version, @NotNull String title, @NotNull String description, boolean dataCenter, @NotNull List<FeatureDiscoveryData.Link> links)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull StringgetDescription()Description of the notification.intgetId()Unique identifier of the notification, for analytics.@NotNull List<FeatureDiscoveryData.Link>getLinks()Links to display for the notification.@NotNull StringgetTitle()Title of the notification.@NotNull StringgetVersion()Version of product in which the feature got introduced.booleanisDataCenter()If feature available for Datacenter only.
-
-
-
Constructor Detail
-
Notification
public Notification(int id, @NotNull @NotNull String version, @NotNull @NotNull String title, @NotNull @NotNull String description, boolean dataCenter, @NotNull @NotNull List<FeatureDiscoveryData.Link> links)
-
-
Method Detail
-
getId
public int getId()
Unique identifier of the notification, for analytics.
-
getVersion
@NotNull public @NotNull String getVersion()
Version of product in which the feature got introduced. Only themajorandminorpart of the version are significant, e.g.6.7.
-
getTitle
@NotNull public @NotNull String getTitle()
Title of the notification.
-
getDescription
@NotNull public @NotNull String getDescription()
Description of the notification.
-
isDataCenter
public boolean isDataCenter()
If feature available for Datacenter only.
-
getLinks
@NotNull public @NotNull List<FeatureDiscoveryData.Link> getLinks()
Links to display for the notification.
-
-