public abstract class BadgeStatusEntity
extends java.lang.Object
BadgeStatusEntity abstract class wraps various attributes about the current status
of the badge related to logging in and being ready to use, including mobile phone number
enrollment and verification and terms of use/privacy policy acknowledgement.| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
admin()
Returns a boolean that represents whether or not the badge has administrative rights on
Network Manager.
|
abstract boolean |
hasKey()
Returns a boolean that represents whether or not the badge has any keys associated with it.
|
abstract long |
issueDate()
Returns a long that represents the time in milliseconds at which the current badge was
issued.
|
abstract boolean |
passwordAuthenticated()
Returns a boolean that represents whether or not the badge has authenticated its password.
|
abstract boolean |
phoneNumberEnrolled()
Returns a boolean that represents whether or not the badge has enrolled a mobile phone
number.
|
abstract boolean |
phoneNumberVerified()
Returns a boolean that represents whether or not the badge has verified a mobile phone
number.
|
abstract boolean |
photoAvailable()
Returns a boolean that represents whether or not the badge has a profile photo.
|
abstract boolean |
privacyPolicyAcknowledged()
Returns a boolean that represents whether or not the badge has acknowledged the privacy
policy.
|
abstract boolean |
termOfUseAcknowledged()
Returns a boolean that represents whether or not the badge has acknowledged the terms of use.
|
public abstract boolean passwordAuthenticated()
true if the badge has its password authenticated;
false otherwise.public abstract boolean admin()
true if the badge has administrative rights on Network Manager;
false otherwise.public abstract boolean photoAvailable()
true if the badge has a profile photo;
false otherwise.public abstract long issueDate()
public abstract boolean termOfUseAcknowledged()
true if the badge has acknowledged the terms of use;
false otherwise.public abstract boolean privacyPolicyAcknowledged()
true if the badge has acknowledged the privacy policy;
false otherwise.public abstract boolean phoneNumberEnrolled()
true if the badge has enrolled a mobile phone number;
false otherwise.public abstract boolean phoneNumberVerified()
true if the badge has verified a mobile phone number;
false otherwise.public abstract boolean hasKey()
true if the badge has keys associated with it;
false otherwise.