Package lumis.portal.monitor.impl
Interface MonitorUserDocument.IMonitorUserGroups
-
- Enclosing class:
- MonitorUserDocument
public static interface MonitorUserDocument.IMonitorUserGroups
Contains data in aMonitorUserDocument
that corresponds to groups info.- 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
addAliases(String... aliases)
Adds the values to the groups aliases in this document.void
addAliases(Collection<String> aliases)
Adds the values to the groups aliases in this document.void
addIds(String... ids)
Adds the values to the groups identifiers in this document.void
addIds(Collection<String> ids)
Adds the values to the groups identifiers in this document.Collection<String>
getAliases()
Returns the groups aliases in this document.Collection<String>
getIds()
Returns the groups identifiers in this document.
-
-
-
Method Detail
-
getAliases
Collection<String> getAliases()
Returns the groups aliases in this document.- Returns:
- the groups aliases.
- Since:
- 11.0.0
-
addAliases
void addAliases(String... aliases)
Adds the values to the groups aliases in this document.- Parameters:
aliases
- the values to set.- Since:
- 11.0.0
-
addAliases
void addAliases(Collection<String> aliases)
Adds the values to the groups aliases in this document.- Parameters:
aliases
- the values to set.- Since:
- 11.0.0
-
getIds
Collection<String> getIds()
Returns the groups identifiers in this document.- Returns:
- the groups identifiers.
- Since:
- 11.0.0
-
addIds
void addIds(String... ids)
Adds the values to the groups identifiers in this document.- Parameters:
ids
- the values to set.- Since:
- 11.0.0
-
addIds
void addIds(Collection<String> ids)
Adds the values to the groups identifiers in this document.- Parameters:
ids
- the values to set.- Since:
- 11.0.0
-
-