Created
July 31, 2014 22:58
-
-
Save sstadelman/39d9348b8b8dad77ed76 to your computer and use it in GitHub Desktop.
Initialize CommonAuthenticationConfigurator with MAFNGDelegate logonConfigurator property
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma mark - MAFLogonNGDelegate implementation | |
-(void) logonFinishedWithError:(NSError*)anError { | |
if (!anError) { | |
/* | |
Initialize HTTPConversationManager, set with logon configurator | |
*/ | |
self.httpConvManager = [[HttpConversationManager alloc] init]; | |
[[self.logonManager logonConfigurator] configureManager:self.httpConvManager]; | |
} else { | |
NSLog(@"logonFinishedWithError:%@", anError); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment