Interface LicensedUsers
-
public interface LicensedUsers
The LicensedUsers interface represents a list of users which use a license of a single type. It is obtained from theUserLicenseAudit
interface, and is the result of an audit operation.- Since:
- MicroStrategy Web 7.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumeration
elements()
Returns a java.util.Enumeration which can be used to iterate through the collection.WebUserEntity
get(int i)
Returns the user at the given index in the collectionint
getLicenseType()
Returns the license type of the collection, fromEnumDSSXMLLicenseType
.boolean
isEmpty()
Returns whether there are any users in the collection.int
size()
Returns the number of users in the collection.
-
-
-
Method Detail
-
size
int size()
Returns the number of users in the collection.- Returns:
- The size of the collection.
-
getLicenseType
int getLicenseType()
Returns the license type of the collection, fromEnumDSSXMLLicenseType
.- Returns:
- A value from
EnumDSSXMLLicenseType
.
-
get
WebUserEntity get(int i)
Returns the user at the given index in the collection- Parameters:
i
- The index of the user to return.- Returns:
- The
WebUser
object at the given index in the collection.
-
isEmpty
boolean isEmpty()
Returns whether there are any users in the collection.- Returns:
- True if the collection is empty, false otherwise.
-
elements
java.util.Enumeration elements()
Returns a java.util.Enumeration which can be used to iterate through the collection.- Returns:
- A java.util.Enumeration which can be used to iterate through the collection.
-
-