Interface BatchAuditResults
- 
public interface BatchAuditResultsTheBatchAuditResultsinterface exposes a single batch of users returned from an audit. You can use this interface to get eachUserLicenseInfoobject, or to get the blockBegin and blockCount settings used to retrieve this set of users. Finally, the isEndOfAudit method will tell you whether this is the last portion of data for the audit or whether more data still exists.- Since:
 - MicroStrategy Web 8.0.2
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()Returns an enumeratioin over all the theUserLicenseInfoobjects.UserLicenseInfoget(int i)Returns theUserLicenseInfoobject at the specified position.intgetBlockBegin()Returns the block begin of the current auditing result.intgetBlockCount()Returns the block count of the current auditing result.java.util.List<ContactLicenseInfo>getContactLicenseInfos()Returns license info of contactsbooleanisComplete()Returns whether it is the end of user license auditing.intsize()Returns the number ofUserLicenseInfoobjects in the result. 
 - 
 
- 
- 
Method Detail
- 
size
int size()
Returns the number ofUserLicenseInfoobjects in the result.- Returns:
 - the number of 
UserLicenseInfoobjects 
 
- 
getBlockBegin
int getBlockBegin()
Returns the block begin of the current auditing result.- Returns:
 - the block begin.
 
 
- 
getBlockCount
int getBlockCount()
Returns the block count of the current auditing result.- Returns:
 - the block count
 
 
- 
get
UserLicenseInfo get(int i)
Returns theUserLicenseInfoobject at the specified position.- Parameters:
 i- the index to aUserLicenseInfoobject.- Returns:
 - the 
UserLicenseInfoobject at the specified position. 
 
- 
elements
java.util.Enumeration elements()
Returns an enumeratioin over all the theUserLicenseInfoobjects.- Returns:
 - an enumeratioin over all the the 
UserLicenseInfoobjects. 
 
- 
isComplete
boolean isComplete()
Returns whether it is the end of user license auditing. If it is end of auditing, the auditing handle will be deleted automatically.- Returns:
 trueif we reach the end of auditing.
 
- 
getContactLicenseInfos
java.util.List<ContactLicenseInfo> getContactLicenseInfos()
Returns license info of contacts- Returns:
 - license info of contacts.
 
 
 - 
 
 -