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: 25809 $ $Date: 2023-07-04 15:23:22 -0300 (Tue, 04 Jul 2023) $
-
-
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(java.lang.String... id)
Adds the identifiers of journeys in this document.MonitorUserDocument.IMonitorStringField
addName()
Adds the name of a journey in this document.java.util.Collection<java.lang.String>
getId()
Returns the value of journey identifiers stored in this document.java.util.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
java.util.Collection<java.lang.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(java.lang.String... id)
Adds the identifiers of journeys in this document.- Parameters:
id
- the identifiers.- Since:
- 12.2.0
-
getName
java.util.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
-
-