EMMobileProtectorTokenJailbreakPolicy

enum EMMobileProtectorTokenJailbreakPolicy {}

The token policy of the Mobile Protector SDK when the physical device is detected as being jailbroken.

  • - Since: 5.3
  • No action is taken when calling any token operation related method of Mobile Protector SDK even the physical device is jailbroken.

    Declaration

    Objective-C

    EMMobileProtectorTokenJailbreakPolicyIgnore

    Swift

    case ignore = 0
  • A EMJailbreakError is returned via the error parameter when calling a method in the Mobile Protector SDK that detects if the physical device is jailbroken.

    Declaration

    Objective-C

    EMMobileProtectorTokenJailbreakPolicyFail

    Swift

    case fail = 1
  • A EMJailbreakError is returned via the error parameter and the associated token is silently removed when calling a method in the Mobile Protector SDK that detects if the physical device is jailbroken.

    Declaration

    Objective-C

    EMMobileProtectorTokenJailbreakPolicyRemoveToken

    Swift

    case removeToken = 2
  • A EMJailbreakErrorDomain is returned via the error parameter and all tokens are silently removed when calling a method in the Mobile Protector SDK that detects if the physical device is jailbroken.

    Declaration

    Objective-C

    EMMobileProtectorTokenJailbreakPolicyRemoveAllTokens

    Swift

    case removeAllTokens = 3