Interface UserLicenseInfo
-
public interface UserLicenseInfo
TheUserLicenseInfo
interface 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.WebUserEntity
getUser()
Returns theWebUserEntity
object representing a user.java.lang.String
getUserID()
Returns the user DSSID.java.lang.String
getUserName()
Returns the user name.boolean
isEnabled()
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:
true
if the user is enabled.
-
getUser
WebUserEntity getUser()
Returns theWebUserEntity
object representing a user.- Returns:
- the
WebUserEntity
object.
-
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.
-
-