Inherits from NSObject
Declared in WLTrusteer.h

Overview

This class allows access to risk-assessment data that is generated by Trusteer.
To use this class, the Trusteer Mobile SDK must first be installed and integrated with your MobileFirst project.

Class Methods

sharedInstance

Provides a WLTrusteer singleton.

+ (id)sharedInstance

Return Value

The shared WLTrusteer object

Declared In

WLTrusteer.h

Instance Methods

deviceKey

Returns a unique device identifier that is generated by Trusteer.

- (NSString *)deviceKey

Return Value

The unique Trusteer device key, or null if the Trusteer Mobile SDK is not installed or was not initialized successfully

Declared In

WLTrusteer.h

hasTrusteerSDK

Checks whether the Trusteer Mobile SDK is installed and initialized successfully on the device.

- (BOOL)hasTrusteerSDK

Return Value

true if the Trusteer Mobile SDK is installed and initialized, or false otherwise

Declared In

WLTrusteer.h

init

Initializes the Trusteer Mobile SDK that is integrated with the MobileFirst project.

Note: This method is applicable only when automatic initialization of the Trusteer Mobile SDK is disabled by setting the TRUSTEER_AUTO_INIT property to false in the client properties file (worklight.plist).

- (id)init

Return Value

The initialized WLTrusteer object

Declared In

WLTrusteer.h

riskAssessment

Generates an NSDictionary with all the risk assessments generated by Trusteer. See the Trusteer documentation for a list of values.

- (NSDictionary *)riskAssessment

Return Value

Risk-assessments dictionary

Declared In

WLTrusteer.h

riskAssessmentAsJson

Generates a JSON string with all the risk assessments generated by Trusteer. See the Trusteer documentation for a list of values.

- (NSString *)riskAssessmentAsJson

Return Value

Risk-assessments JSON String

Declared In

WLTrusteer.h