Searched refs:userInfo (Results 1 - 25 of 59) sorted by relevance

123

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAError.m30 return [self createErrorWithCode:code userInfo:@{ NSLocalizedDescriptionKey : description }];
36 return [self createErrorWithCode:FRAFileError userInfo:@{ NSLocalizedDescriptionKey : reason, NSFilePathErrorKey : path }];
44 return [self createErrorWithCode:code userInfo:@{ NSLocalizedDescriptionKey : reason }];
47 + (NSError *)createError:(NSString *)reason code:(enum FRAErrorCodes)code userInfo:(NSDictionary *)userInfo {
48 NSMutableDictionary *info = [userInfo mutableCopy];
50 return [self createErrorWithCode:code userInfo:info];
55 NSDictionary *userInfo = @{NSLocalizedDescriptionKey : reason, NSUnderlyingErrorKey : underlyingError};
56 return [self createErrorWithCode:code userInfo:userInfo];
[all...]
H A DFRANotificationGateway.m71 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
72 NSLog(@"Notification received: %@", userInfo);
73 [[self notificationHandler] application:application didReceiveRemoteNotification:userInfo];
76 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler {
77 NSLog(@"Notification received: %@", userInfo);
78 [[self notificationHandler] application:application didReceiveRemoteNotification:userInfo];
H A DFRANotificationGateway.h59 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo;
63 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
H A DFRAError.h64 * @param userInfo Any additional info.
67 + (NSError *)createError:(NSString *)reason code:(enum FRAErrorCodes)code userInfo:(NSDictionary *)userInfo;
H A DAppDelegate.m73 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
75 [[[self assembly] notificationGateway] application:application didReceiveRemoteNotification:userInfo];
78 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler {
80 [[[self assembly] notificationGateway] application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
125 NSLog(@"database changed: %@", notification.userInfo);
H A DFRAMechanismReaderAction.m96 FRAIdentity *identity = [(*error).userInfo valueForKey:@"identity"];
97 FRAMechanism *duplicateMechanism = [(*error).userInfo valueForKey:@"mechanism"];
H A DFRAIdentity.m80 userInfo:@{ @"identity":self, @"mechanism":duplicateMechanism }];
H A DFRAAccountsTableViewController.m50 self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerCallback:) userInfo:nil repeats:YES];
262 userInfo:nil];
H A DFRAOathMechanismTableViewCellController.m201 self.progressAnimationTimer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(timerCallback:) userInfo:nil repeats:YES];
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRAErrorTest.m56 XCTAssertEqualObjects([error.userInfo valueForKey:NSLocalizedDescriptionKey], errorMessage);
65 XCTAssertEqualObjects([error.userInfo valueForKey:NSLocalizedDescriptionKey], @"nil");
75 XCTAssertEqualObjects([error.userInfo valueForKey:NSLocalizedDescriptionKey], ERROR_REASON);
76 XCTAssertEqualObjects([error.userInfo valueForKey:NSFilePathErrorKey], filePath);
82 NSDictionary *userInfo = @{ @"other" : @"data" };
84 NSError *error = [FRAError createError:ERROR_REASON code:errorCode userInfo:userInfo];
87 XCTAssertEqualObjects([error.userInfo valueForKey:NSLocalizedDescriptionKey], ERROR_REASON);
88 XCTAssertEqualObjects([error.userInfo valueForKey:@"other"], @"data");
96 XCTAssertEqual([error.userInfo valueForKe
[all...]
H A DFRASqlDatabaseFactoryTest.m52 XCTAssertEqualObjects([error.userInfo valueForKey:NSFilePathErrorKey], PATH);
H A DFRAIdentityModelTests.m84 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
125 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
127 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
176 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:expectedChanges];
203 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
214 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:expectedChanges];
H A DFRAMechanismTest.m87 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
141 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
H A DFRADatabaseConfigurationTest.m86 XCTAssertEqualObjects([error.userInfo valueForKey:NSLocalizedDescriptionKey], @"Could not locate system folder /Library");
H A DFRAIdentityTests.m108 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
167 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
245 XCTAssertEqual([error.userInfo valueForKey:@"identity"], identity);
246 XCTAssertEqual([error.userInfo valueForKey:@"mechanism"], mechanism);
H A DFRAHotpOathMechanismTests.m119 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
H A DFRANotificationTest.m191 [[databaseObserverMock expect] notificationWithName:FRAIdentityDatabaseChangedNotification object:database userInfo:[OCMArg any]];
/forgerock/jee-agents-v3.5/jee-agents-jetty/jee-agents-jetty-v7/src/main/java/org/forgerock/agents/jetty/v7/
H A DAgentLoginModule.java62 UserInfo userInfo = getUserInfo(webUserName);
64 if (userInfo == null) {
69 setAuthenticated(userInfo.checkCredential(webCredential));
70 setCurrentUser(new JAASUserInfo(userInfo));
/forgerock/openam-v13/openam-oauth2-common/openid-connect-restlet/src/main/java/org/forgerock/openidconnect/restlet/
H A DUserInfo.java76 final JsonValue userInfo = userInfoService.getUserInfo(request);
77 return new JsonRepresentation(userInfo.asMap());
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/restlet/
H A DUserInfo.java76 final JsonValue userInfo = userInfoService.getUserInfo(request);
77 return new JsonRepresentation(userInfo.asMap());
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DAuthorizationServiceImpl.java132 UserInfoClaims userInfo = null;
134 userInfo = providerSettings.getUserInfo(request.getToken(AccessToken.class), request);
149 final Map<String, String> claimDescriptions = getClaimDescriptions(userInfo.getValues(),
152 userInfo, resourceOwner.getName(providerSettings));
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DAuthorizationService.java182 UserInfoClaims userInfo = null;
184 userInfo = providerSettings.getUserInfo(
202 final Map<String, String> claimDescriptions = getClaimDescriptions(userInfo.getValues(),
207 claimDescriptions, userInfo, resourceOwner.getName(providerSettings), saveConsentEnabled);
/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/
H A DResourceQueryAuthenticator.java114 final UserInfo userInfo = getRepoUserInfo(username, resource);
115 if (userInfo == null) {
118 } else if (userInfo.checkCredential(password)) {
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/jaxrpc/
H A DSOAPClient.java216 String userInfo = endpoint.getUserInfo();
217 if (userInfo != null) {
219 + Base64.encode(userInfo.getBytes("UTF-8")));
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/jaxrpc/
H A DSOAPClient.java216 String userInfo = endpoint.getUserInfo();
217 if (userInfo != null) {
219 + Base64.encode(userInfo.getBytes("UTF-8")));

Completed in 620 milliseconds

123