EMOobModule Class Reference

Inherits from NSObject
Declared in EMOobModule.h

Overview

EMOobModule class which is the entry-point for OOB features.

+ oobModule

Create EMOobModule object.

+ (EMOobModule *)oobModule

Return Value

Oob Module.

Availability

4.0

Declared In

EMOobModule.h

– createOobManagerWithURL:domain:applicationId:rsaExponent:rsaModulus:error:

Creates an instance of OOB Manager with configuration

- (id<EMOobManager>)createOobManagerWithURL:(NSURL *)url domain:(NSString *)domain applicationId:(NSString *)applicationId rsaExponent:(NSData *)rsaExponent rsaModulus:(NSData *)rsaModulus error:(NSError **)anError

Parameters

url

The URL. Should not be nil.

domain

The domain. Should not be nil.

applicationId

The applicationId. Should not be nil.

rsaExponent

The rsaModulus. Should not be nil.

rsaModulus

The rsaModulus. Should not be nil.

anError

If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, you may pass in NULL.

Return Value

OOB Manager object.

Availability

4.0

Declared In

EMOobModule.h

– resetWithApplicationId:error:

Cleanup the data associated with OOB module. All registered clients will be removed for the all application IDs.

- (bool)resetWithApplicationId:(NSString *)applicationId error:(NSError **)error

Parameters

applicationId

The application ID.

error

If an error occurs, upon returns it contains an NSError object that describes the problem. If you are not interested in the possible errors, you can pass nil.

Return Value

YES if reset is successful.

Availability

5.2.0

Declared In

EMOobModule.h