Interface MAMComplianceNotification
-
- All Implemented Interfaces:
-
com.microsoft.intune.mam.policy.notification.MAMNotification,com.microsoft.intune.mam.policy.notification.MAMUserNotification
public interface MAMComplianceNotification implements MAMUserNotification
MAMNotification with the result of attempting to remediate compliance for App Protection CA.
-
-
Method Summary
Modifier and Type Method Description abstract MAMCAComplianceStatusgetComplianceStatus()Get the compliance status. abstract StringgetComplianceErrorTitle()Get the error title. abstract StringgetComplianceErrorMessage()Get the error message. -
Methods inherited from class com.microsoft.intune.mam.policy.notification.MAMUserNotification
getUserIdentity, getUserOid -
Methods inherited from class com.microsoft.intune.mam.policy.notification.MAMNotification
getType -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getComplianceStatus
abstract MAMCAComplianceStatus getComplianceStatus()
Get the compliance status.
- Returns:
status from MAMCAComplianceStatus enum.
-
getComplianceErrorTitle
abstract String getComplianceErrorTitle()
Get the error title. The app may choose to display this to the end user. We will attempt to localize the string if the user's locale is supported.
- Returns:
A localized string for the error title. May be null or empty string if there is no error.
-
getComplianceErrorMessage
abstract String getComplianceErrorMessage()
Get the error message. The app may choose to display this to the end user. We will attempt to localize the string if the user's locale is supported.
- Returns:
A localized string for the error message. May be null or empty string if there is no error.
-
-
-
-