public interface

LicensedUsers

com.microstrategy.web.objects.admin.licensing.LicensedUsers

Class Overview

The LicensedUsers interface represents a list of users which use a license of a single type. It is obtained from the UserLicenseAudit interface, and is the result of an audit operation.

Summary

Public Methods
abstract Enumeration elements()
Returns a java.util.Enumeration which can be used to iterate through the collection.
abstract WebUserEntity get(int i)
Returns the user at the given index in the collection
abstract int getLicenseType()
Returns the license type of the collection, from EnumDSSXMLLicenseType.
abstract boolean isEmpty()
Returns whether there are any users in the collection.
abstract int size()
Returns the number of users in the collection.

Public Methods

public abstract 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.

public abstract 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.

public abstract int getLicenseType ()

Returns the license type of the collection, from EnumDSSXMLLicenseType.

Returns

public abstract boolean isEmpty ()

Returns whether there are any users in the collection.

Returns
  • True if the collection is empty, false otherwise.

public abstract int size ()

Returns the number of users in the collection.

Returns
  • The size of the collection.