EAEExxtractorUserRequesting

Objective-C

@protocol EAEExxtractorUserRequesting <NSObject>

/*!
 Method that performs the request which creates a new user
 
 @param server  The server where the user will be created
 @param username The username of the new user
 @param password The password of the new user
 @param success The block which will be executed upon a successful request
 @param failure The block which will be executed upon a failed request
 */
- (void) requestCreateUserAtVenueServer: (EAEServer *) server
                               username: (NSString *) username
                               password: (NSString *) password
                                success: (BAWebServiceSuccessResponse) success
                                failure: (BAWebServiceFailureResponse) failure;

@end

Swift

protocol EAEExxtractorUserRequesting : NSObjectProtocol

Undocumented