Interface UserLicenseInfo
- 
public interface UserLicenseInfoTheUserLicenseInfointerface represents a single users license information. It contains an array containing the license types the user uses, a flag as to whether the user is enabled or not, and a method to return the user object.- Since:
 - MicroStrategy Web 8.0.2
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[]getLicenseTypes()Returns the license types for a user.WebUserEntitygetUser()Returns theWebUserEntityobject representing a user.java.lang.StringgetUserID()Returns the user DSSID.java.lang.StringgetUserName()Returns the user name.booleanisEnabled()Returns whether the user is enabled or not. 
 - 
 
- 
- 
Method Detail
- 
getLicenseTypes
int[] getLicenseTypes()
Returns the license types for a user.- Returns:
 - the license types.
 
 
- 
isEnabled
boolean isEnabled()
Returns whether the user is enabled or not.- Returns:
 trueif the user is enabled.
 
- 
getUser
WebUserEntity getUser()
Returns theWebUserEntityobject representing a user.- Returns:
 - the 
WebUserEntityobject. 
 
- 
getUserName
java.lang.String getUserName()
Returns the user name. This is a shortcut method to get user name.- Returns:
 - the user name.
 
 
- 
getUserID
java.lang.String getUserID()
Returns the user DSSID. This is a shortcut method to get user DSSID.- Returns:
 - the user DSSID.
 
 
 - 
 
 -