public abstract class BadgeMiniModel
extends java.lang.Object
BadgeMiniModel abstract class identifies the properties related to
attributes found on the miniature badge models used on the Badge Management View
and Badge Deletion View.| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
admin()
Returns a boolean that represents whether or not the badge has administrative privileges
on Network Manager.
|
abstract java.lang.String |
backgroundColor()
Returns a String of the background color.
|
abstract int |
badgeId()
Returns an int of the identification number of the badge.
|
abstract java.lang.String |
badgeName()
Returns a String of the name of the badge.
|
abstract boolean |
currentDevice()
Returns a boolean that represents whether or not this device is the current device.
|
abstract java.lang.String |
emailAddress()
Returns a String of the email address.
|
abstract boolean |
needAuthentication()
Returns a boolean that represents whether or not the badge needs authentication (i.e.
|
abstract boolean |
needProvisionEnrollment()
Returns a boolean that represents whether or not the badge needs device provisioning
enrollment.
|
abstract boolean |
needProvisionVerification()
Returns a boolean that represents whether or not the badge needs device provisioning
verification.
|
abstract java.lang.String |
orgIconUrl()
Returns a String of the URL of the organization icon.
|
abstract int |
orgId()
Returns an int of the identification number of the organization.
|
abstract java.lang.String |
phoneNumber()
Returns a String of the mobile phone number.
|
abstract boolean |
revoked()
Returns a boolean that represents whether or not the badge has been suspended by an
administrator.
|
abstract boolean |
selected()
Returns a boolean that represents whether or not the badge has been selected.
|
abstract BadgeMiniModel |
withSelected(boolean selected)
Constructor for a
BadgeMiniModel object with selected() set. |
public abstract int badgeId()
Object.hashCode()
and Object.equals(Object) implementation.public abstract boolean selected()
true if the badge has been selected;
false otherwise.public abstract int orgId()
@Nullable public abstract java.lang.String backgroundColor()
null.@Nullable public abstract java.lang.String badgeName()
null.@Nullable public abstract java.lang.String orgIconUrl()
null.@Nullable public abstract java.lang.String phoneNumber()
null.@Nullable public abstract java.lang.String emailAddress()
null.public abstract boolean admin()
true if the badge has administrative privileges on Network Manager;
false otherwise.public abstract boolean currentDevice()
true if this device is the current device;
false otherwise.public abstract boolean needAuthentication()
true if the badge needs authentication;
false otherwise.public abstract boolean needProvisionEnrollment()
true if the badge needs device provisioning enrollment;
false otherwise.public abstract boolean needProvisionVerification()
true if the badge needs device provisioning verification;
false otherwise.public abstract boolean revoked()
true if the badge has been suspended by an administrator;
false otherwise.public abstract BadgeMiniModel withSelected(boolean selected)
BadgeMiniModel object with selected() set.selected - See selected()BadgeMiniModel object with selected() set.