Package lumis.portal.monitor.impl
Interface MonitorUserDocument.IMonitorUserJourneys
-
- Enclosing class:
- MonitorUserDocument
public static interface MonitorUserDocument.IMonitorUserJourneys
Contains data in aMonitorUserDocument
that corresponds to the user's journeys.- Since:
- 12.2.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
MonitorUserDocument.IMonitorUserJourneys.IMonitorUserJourneyStage
Contains data in aMonitorUserDocument
that corresponds a journey stage parts.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addId(String... id)
Adds the identifiers of journeys in this document.MonitorUserDocument.IMonitorStringField
addName()
Adds the name of a journey in this document.Collection<String>
getId()
Returns the value of journey identifiers stored in this document.Collection<MonitorUserDocument.IMonitorStringField>
getName()
Returns the names of the journeys stored in this document.MonitorUserDocument.IMonitorUserJourneys.IMonitorUserJourneyStage
getStage()
Returns the informations of stage journey stored in this document.
-
-
-
Method Detail
-
getId
Collection<String> getId()
Returns the value of journey identifiers stored in this document.- Returns:
- the value of journey identifiers stored in this document.
- Since:
- 12.2.0
-
addId
void addId(String... id)
Adds the identifiers of journeys in this document.- Parameters:
id
- the identifiers.- Since:
- 12.2.0
-
getName
Collection<MonitorUserDocument.IMonitorStringField> getName()
Returns the names of the journeys stored in this document.- Returns:
- the names of the journeys stored in this document.
- Since:
- 12.2.0
-
addName
MonitorUserDocument.IMonitorStringField addName()
Adds the name of a journey in this document.- Returns:
- the name field added.
- Since:
- 12.2.0
-
getStage
MonitorUserDocument.IMonitorUserJourneys.IMonitorUserJourneyStage getStage()
Returns the informations of stage journey stored in this document.- Returns:
- the informations of stage journey stored in this document.
- Since:
- 12.2.0
-
-