Interface ContactLicenseInfo
-
public interface ContactLicenseInfo
TheContactLicenseInfo
interface represents a single contacts license information. It contains an array containing the license types the contact uses, a flag as to whether the contact is enabled or not, and a method to return the contact object.- Since:
- MicroStrategy Web 10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebSubscriptionComponent
getContact()
Returns the Subscription component object representing a contact.java.lang.String
getContactID()
Returns the contact DSSID.java.lang.String
getContactName()
Returns the contact name.int[]
getLicenseTypes()
Returns the license types for a contact.boolean
isEnabled()
Returns whether the contact is enabled or not.
-
-
-
Method Detail
-
getLicenseTypes
int[] getLicenseTypes()
Returns the license types for a contact.- Returns:
- the license types.
-
isEnabled
boolean isEnabled()
Returns whether the contact is enabled or not.- Returns:
true
if the contact is enabled.
-
getContact
WebSubscriptionComponent getContact()
Returns the Subscription component object representing a contact.- Returns:
- the contact object.
-
getContactName
java.lang.String getContactName()
Returns the contact name. This is a shortcut method to get contact name.- Returns:
- the contact name.
-
getContactID
java.lang.String getContactID()
Returns the contact DSSID. This is a shortcut method to get contact DSSID.- Returns:
- the contact DSSID.
-
-