Class FeatureDiscoveryData.Notification
java.lang.Object
com.atlassian.bamboo.feature.discovery.FeatureDiscoveryData.Notification
- Enclosing class:
- FeatureDiscoveryData
-
Constructor Summary
ConstructorsConstructorDescriptionNotification
(int id, @NotNull String version, @NotNull String title, @NotNull String description, boolean dataCenter, @NotNull List<FeatureDiscoveryData.Link> links) -
Method Summary
Modifier and TypeMethodDescription@NotNull String
Description of the notification.int
getId()
Unique identifier of the notification, for analytics.@NotNull List<FeatureDiscoveryData.Link>
getLinks()
Links to display for the notification.@NotNull String
getTitle()
Title of the notification.@NotNull String
Version of product in which the feature got introduced.boolean
If feature available for Datacenter only.
-
Constructor Details
-
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 Details
-
getId
public int getId()Unique identifier of the notification, for analytics. -
getVersion
Version of product in which the feature got introduced. Only themajor
andminor
part of the version are significant, e.g.6.7
. -
getTitle
Title of the notification. -
getDescription
Description of the notification. -
isDataCenter
public boolean isDataCenter()If feature available for Datacenter only. -
getLinks
Links to display for the notification.
-