Package lumis.portal.monitor.impl
Interface MonitorUserDocument.IMonitorUser
-
- Enclosing class:
- MonitorUserDocument
public static interface MonitorUserDocument.IMonitorUser
Contains data in aMonitorUserDocument
that corresponds to aMonitorUser
.- Since:
- 11.0.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addWebsiteProjectIds(String... websiteProjectIds)
Add the website project identifiers.void
addWebsiteProjectIds(Collection<String> websiteProjectIds)
Add the website project identifiers.MonitorUserDocument.IMonitorUserAttributes
getAttributes()
Returns the value ofMonitorUser#getUntrustedCustomAttributes()
stored in this document.MonitorUserDocument.IMonitorDateTimeField
getCreatedDateTime()
Returns the value ofMonitorUser.getCreatedDateTime()
stored in this document.MonitorUserDocument.IMonitorStringField
getEmail()
Returns the value ofMonitorUser#getEmail()
stored in this document.String
getFriendlyId()
Returns the value ofMonitorUser.getFriendlyId()
stored in this document.MonitorUserDocument.IMonitorUserGroups
getGroups()
Returns the groups of associate user with the monitor user byMonitorUser.getPortalUserId()
stored in this document.String
getId()
Returns the value ofMonitorUser.getId()
stored in this document.MonitorUserDocument.IMonitorUserJourneys
getJourneys()
Returns allJourneyInstance
ofMonitorUser
stored in this document.String
getLogin()
Returns the login of associate user with the monitor user byMonitorUser.getPortalUserId()
stored in this document.MonitorUserDocument.IMonitorUserName
getName()
Returns the value ofMonitorUser#getFullName()
stored in this document.String
getPortalUserId()
Returns the value ofMonitorUser.getPortalUserId()
stored in this document.long
getVisitorId()
Returns the value ofMonitorUser.getVisitorId()
stored in this document.Collection<String>
getWebsiteProjectIds()
Returns the website project identifiers.void
setFriendlyId(String friendlyId)
Sets the value forMonitorUser.getFriendlyId()
in this document.void
setId(String id)
Sets the value forMonitorUser.getId()
in this document.void
setLogin(String login)
Sets the value for login of associate user with the monitor user byMonitorUser.getPortalUserId()
in this document.void
setPortalUserId(String id)
Sets the value forMonitorUser.setPortalUserId(String)
in this document.void
setVisitorId(long visitorId)
Sets the value forMonitorUser.getVisitorId()
in this document.
-
-
-
Method Detail
-
getName
MonitorUserDocument.IMonitorUserName getName()
Returns the value ofMonitorUser#getFullName()
stored in this document.- Returns:
- the value of
MonitorUser#getFullName()
. - Since:
- 11.0.0
-
getCreatedDateTime
MonitorUserDocument.IMonitorDateTimeField getCreatedDateTime()
Returns the value ofMonitorUser.getCreatedDateTime()
stored in this document.- Returns:
- the value of
MonitorUser.getCreatedDateTime()
. - Since:
- 11.0.0
-
getPortalUserId
String getPortalUserId()
Returns the value ofMonitorUser.getPortalUserId()
stored in this document.- Returns:
- the value of
MonitorUser.getPortalUserId()
. - Since:
- 11.0.0
-
setPortalUserId
void setPortalUserId(String id)
Sets the value forMonitorUser.setPortalUserId(String)
in this document.- Parameters:
id
- the user identifier.- Since:
- 11.0.0
-
getGroups
MonitorUserDocument.IMonitorUserGroups getGroups()
Returns the groups of associate user with the monitor user byMonitorUser.getPortalUserId()
stored in this document.- Returns:
- the groups of associate user with the monitor user by
MonitorUser.getPortalUserId()
. - Since:
- 11.0.0
-
getAttributes
MonitorUserDocument.IMonitorUserAttributes getAttributes()
Returns the value ofMonitorUser#getUntrustedCustomAttributes()
stored in this document.- Returns:
- the value of
MonitorUser#getUntrustedCustomAttributes()
. - Since:
- 11.0.0
-
getId
String getId()
Returns the value ofMonitorUser.getId()
stored in this document.- Returns:
- the value of
MonitorUser.getId()
. - Since:
- 11.0.0
-
setId
void setId(String id)
Sets the value forMonitorUser.getId()
in this document.- Parameters:
id
- the monitor user identifier.- Since:
- 11.0.0
-
getLogin
String getLogin()
Returns the login of associate user with the monitor user byMonitorUser.getPortalUserId()
stored in this document.- Returns:
- the login of associate user with the monitor user by
MonitorUser.getPortalUserId()
. - Since:
- 11.0.0
-
setLogin
void setLogin(String login)
Sets the value for login of associate user with the monitor user byMonitorUser.getPortalUserId()
in this document.- Parameters:
login
- the associate user login.- Since:
- 11.0.0
-
getEmail
MonitorUserDocument.IMonitorStringField getEmail()
Returns the value ofMonitorUser#getEmail()
stored in this document.- Returns:
- the value of
MonitorUser#getEmail()
. - Since:
- 11.0.0
-
getVisitorId
long getVisitorId()
Returns the value ofMonitorUser.getVisitorId()
stored in this document.- Returns:
- the value of
MonitorUser.getVisitorId()
. - Since:
- 11.0.0
-
setVisitorId
void setVisitorId(long visitorId)
Sets the value forMonitorUser.getVisitorId()
in this document.- Parameters:
visitorId
- the visitor identifier.- Since:
- 11.0.0
-
getFriendlyId
String getFriendlyId()
Returns the value ofMonitorUser.getFriendlyId()
stored in this document.- Returns:
- the value of
MonitorUser.getFriendlyId()
. - Since:
- 11.0.0
-
setFriendlyId
void setFriendlyId(String friendlyId)
Sets the value forMonitorUser.getFriendlyId()
in this document.- Parameters:
friendlyId
- the friendly identifier.- Since:
- 11.0.0
-
getJourneys
MonitorUserDocument.IMonitorUserJourneys getJourneys()
Returns allJourneyInstance
ofMonitorUser
stored in this document.- Returns:
- all
JourneyInstance
ofMonitorUser
stored in this document. - Since:
- 12.2.0
-
getWebsiteProjectIds
Collection<String> getWebsiteProjectIds()
Returns the website project identifiers.- Returns:
- the website project identifiers.
- Since:
- 12.3.0
-
addWebsiteProjectIds
void addWebsiteProjectIds(String... websiteProjectIds)
Add the website project identifiers.- Since:
- 12.3.0
-
addWebsiteProjectIds
void addWebsiteProjectIds(Collection<String> websiteProjectIds)
Add the website project identifiers.- Since:
- 12.3.0
-
-