Interface NavigationStatisticsEntry
-
- All Superinterfaces:
Serializable
public interface NavigationStatisticsEntry extends Serializable
Contains navigation statistics related to a specific asset.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UUID
getAssetId()
Get the UUID of the Asset that this navigation statistics entry concerns.long
getLastViewedDate()
Get the last time that the Asset was viewed by anyone.String
getName()
Get the name of the Asset that this navigation statistics entry concerns.int
getNumberOfViews()
Get the number of times the Asset was viewed.
-
-
-
Method Detail
-
getAssetId
UUID getAssetId()
Get the UUID of the Asset that this navigation statistics entry concerns.- Returns:
- UUID of the viewed Asset
-
getName
String getName()
Get the name of the Asset that this navigation statistics entry concerns.- Returns:
- name of the viewed Asset
-
getNumberOfViews
int getNumberOfViews()
Get the number of times the Asset was viewed.- Returns:
- the number of times
-
getLastViewedDate
long getLastViewedDate()
Get the last time that the Asset was viewed by anyone.- Returns:
- an epoch timestamp
-
-