Searched refs:pending (Results 1 - 25 of 55) sorted by relevance

123

/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/common/
H A DStripedListEditingView.js67 var pending = this.getPendingItem(e), // provide child implementation
80 if (self.isExistingItem(pending, item)) { // provide child implementation
92 this.data.items.push(pending);
93 this.data.options.justAdded = pending;
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/common/
H A DStripedListEditingView.js64 const pending = this.getPendingItem(e); // provide child implementation
75 if (this.isExistingItem(pending, item)) { // provide child implementation
86 this.data.items.push(pending);
87 this.data.options.justAdded = pending;
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/notifications/
H A DNotification.java40 private boolean pending; field in class:Notification
43 protected Notification(Mechanism mechanism, long id, Calendar timeAdded, Calendar timeExpired, boolean approved, boolean pending) { argument
49 this.pending = pending;
193 return pending;
219 pending = false;
239 pending = false;
275 protected boolean pending = true; field in class:Notification.NotificationBuilder
310 * @param pending True if the authentication has not been handled, false otherwise.
312 public T setPending(boolean pending) { argument
[all...]
H A DPushNotification.java190 return new PushNotification(parent, id, amlbCookie, timeAdded, timeExpired, approved, pending, messageId, base64Challenge);
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRANotification.m26 * of pending, to the final state of approved or denied.
35 @synthesize pending = _pending;
37 - (instancetype)initWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel messageId:(NSString *)messageId challenge:(NSString *)challenge timeReceived:(NSDate *)timeReceived timeToLive:(NSTimeInterval)timeToLive loadBalancerCookieData:(NSString *)loadBalancerCookie pending:(BOOL)pendingState approved:(BOOL)approvedState {
54 return [self initWithDatabase:database identityModel:identityModel messageId:messageId challenge:challenge timeReceived:timeReceived timeToLive:timeToLive loadBalancerCookieData:loadBalancerCookie pending:YES approved:NO];
57 + (instancetype)notificationWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel messageId:(NSString *)messageId challenge:(NSString *)challenge timeReceived:(NSDate *)timeReceived timeToLive:(NSTimeInterval)timeToLive loadBalancerCookieData:(NSString *)loadBalancerCookie pending:(BOOL)pendingState approved:(BOOL)approvedState{
58 return [[FRANotification alloc] initWithDatabase:database identityModel:identityModel messageId:messageId challenge:challenge timeReceived:timeReceived timeToLive:timeToLive loadBalancerCookieData:loadBalancerCookie pending:pendingState approved:approvedState];
62 return [[FRANotification alloc] initWithDatabase:database identityModel:identityModel messageId:messageId challenge:challenge timeReceived:timeReceived timeToLive:timeToLive loadBalancerCookieData:loadBalancerCookie pending:YES approved:NO];
H A DFRANotification.h49 * Indicator of whether this Notification is pending. In the pending state a
51 * either approved or denied, it will move to the non-pending state.
53 @property (getter=isPending, nonatomic, readonly) BOOL pending; variable
97 - (instancetype)initWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel messageId:(NSString *)messageId challenge:(NSString *)challenge timeReceived:(NSDate *)timeReceived timeToLive:(NSTimeInterval)timeToLive loadBalancerCookieData:(NSString *)loadBalancerCookie pending:(BOOL)pendingState approved:(BOOL)approvedState;
107 + (instancetype)notificationWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel messageId:(NSString *)messageId challenge:(NSString *)challenge timeReceived:(NSDate *)timeReceived timeToLive:(NSTimeInterval)timeToLive loadBalancerCookieData:(NSString *)loadBalancerCookie pending:(BOOL)pendingState approved:(BOOL)approvedState;
H A Dschema.sql24 pending INT,
H A DFRAModelsFromDatabase.m91 int pending = [results intForColumn:@"pending"];
106 pending,
279 pending:pending
H A DFRANotificationHandler.m71 if (!notification || !notification.pending) {
73 // if the notification is not pending, then the notification timed out or was dealt with by opening the app
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/resourceTypes/
H A DResourceTypeActionsView.js86 pending = { "name": actionName, "value": true },
91 if (pending.name === "") {
97 if (self.isExistingItem(pending, item)) {
107 this.data.actions.push(pending);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/resourceTypes/
H A DResourceTypeActionsView.js87 const pending = { "name": actionName, "value": true };
91 if (pending.name === "") {
97 if (this.isExistingItem(pending, item)) {
107 this.data.actions.push(pending);
/forgerock/web-agents-v4/zlib/
H A Ddeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits)
451 unsigned *pending;
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
516 if (err == Z_BUF_ERROR && s->pending == 0)
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
637 * Flush as much pending output as possible. All deflate() output goes
649 len = s->pending;
[all...]
H A Ddeflate.h100 Bytef *pending_buf; /* output still pending */
102 Bytef *pending_out; /* next pending byte to output to the stream */
103 uInt pending; /* nb of bytes in the pending buffer */ member in struct:internal_state
278 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/sample9/
H A DREADME58 5. After completing all pending tasks, go to the "Users" tab to see the list of
/forgerock/web-agents-v4/source/
H A Dnet_client_ssl.c522 int len, remaining, hasread, pending; local
524 pending = BIO_ctrl ? BIO_ctrl(n->ssl.write_bio, BIO_CTRL_PENDING, 0, NULL) : -1;
525 if (pending > 0) {
526 buf = malloc(pending);
531 hasread = BIO_read ? BIO_read(n->ssl.write_bio, buf, pending) : -1;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/config/
H A DStringConfigAttribute.java66 /** The set of pending values for this attribute. */
186 * @param pendingValues The set of pending values for this
289 * Retrieves the pending value for this configuration attribute as a string.
291 * attribute does not have any pending values, then the active value will be
294 * @return The pending value for this configuration attribute as a string.
296 * If this attribute does not have exactly one pending value.
324 * Retrieves the set of pending values for this configuration attribute. If
325 * there are no pending values, then the set of active values will be
328 * @return The set of pending values for this configuration attribute.
432 // Apply this value set to the new active or pending valu
746 _toJMXAttribute(boolean pending) argument
[all...]
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/
H A DIdentityDatabase.java90 static final String PENDING = "pending";
319 boolean pending = cursor.getLong(cursor.getColumnIndex(PENDING)) == 1;
332 .setPending(pending);
/forgerock/opendj2/src/server/org/opends/server/config/
H A DDNConfigAttribute.java72 // The set of pending values for this attribute.
199 * @param pendingValues The set of pending values for this
301 * Retrieves the pending value for this configuration attribute as a DN.
303 * attribute does not have any pending values, then the active value will be
306 * @return The pending value for this configuration attribute as a DN.
309 * pending value.
337 * Retrieves the set of pending values for this configuration attribute. If
338 * there are no pending values, then the set of active values will be
341 * @return The set of pending values for this configuration attribute.
461 // Apply this value set to the new active or pending valu
959 _toJMXAttribute(boolean pending) argument
[all...]
H A DMultiChoiceConfigAttribute.java73 // The set of pending values for this attribute.
231 * @param pendingValues The set of pending values for this
338 * Retrieves the pending value for this configuration attribute as a string.
340 * attribute does not have any pending values, then the active value will be
343 * @return The pending value for this configuration attribute as a string.
346 * pending value.
374 * Retrieves the set of pending values for this configuration attribute. If
375 * there are no pending values, then the set of active values will be
378 * @return The set of pending values for this configuration attribute.
525 // Apply this value set to the new active or pending valu
967 _toJMXAttribute(boolean pending) argument
[all...]
H A DStringConfigAttribute.java72 // The set of pending values for this attribute.
201 * @param pendingValues The set of pending values for this
305 * Retrieves the pending value for this configuration attribute as a string.
307 * attribute does not have any pending values, then the active value will be
310 * @return The pending value for this configuration attribute as a string.
313 * pending value.
341 * Retrieves the set of pending values for this configuration attribute. If
342 * there are no pending values, then the set of active values will be
345 * @return The set of pending values for this configuration attribute.
464 // Apply this value set to the new active or pending valu
862 _toJMXAttribute(boolean pending) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/config/
H A DDNConfigAttribute.java73 // The set of pending values for this attribute.
200 * @param pendingValues The set of pending values for this
302 * Retrieves the pending value for this configuration attribute as a DN.
304 * attribute does not have any pending values, then the active value will be
307 * @return The pending value for this configuration attribute as a DN.
310 * pending value.
338 * Retrieves the set of pending values for this configuration attribute. If
339 * there are no pending values, then the set of active values will be
342 * @return The set of pending values for this configuration attribute.
462 // Apply this value set to the new active or pending valu
960 _toJMXAttribute(boolean pending) argument
[all...]
H A DMultiChoiceConfigAttribute.java74 // The set of pending values for this attribute.
232 * @param pendingValues The set of pending values for this
339 * Retrieves the pending value for this configuration attribute as a string.
341 * attribute does not have any pending values, then the active value will be
344 * @return The pending value for this configuration attribute as a string.
347 * pending value.
375 * Retrieves the set of pending values for this configuration attribute. If
376 * there are no pending values, then the set of active values will be
379 * @return The set of pending values for this configuration attribute.
526 // Apply this value set to the new active or pending valu
968 _toJMXAttribute(boolean pending) argument
[all...]
H A DStringConfigAttribute.java73 // The set of pending values for this attribute.
202 * @param pendingValues The set of pending values for this
306 * Retrieves the pending value for this configuration attribute as a string.
308 * attribute does not have any pending values, then the active value will be
311 * @return The pending value for this configuration attribute as a string.
314 * pending value.
342 * Retrieves the set of pending values for this configuration attribute. If
343 * there are no pending values, then the set of active values will be
346 * @return The set of pending values for this configuration attribute.
465 // Apply this value set to the new active or pending valu
863 _toJMXAttribute(boolean pending) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/config/
H A DDNConfigAttribute.java73 // The set of pending values for this attribute.
200 * @param pendingValues The set of pending values for this
302 * Retrieves the pending value for this configuration attribute as a DN.
304 * attribute does not have any pending values, then the active value will be
307 * @return The pending value for this configuration attribute as a DN.
310 * pending value.
338 * Retrieves the set of pending values for this configuration attribute. If
339 * there are no pending values, then the set of active values will be
342 * @return The set of pending values for this configuration attribute.
462 // Apply this value set to the new active or pending valu
960 _toJMXAttribute(boolean pending) argument
[all...]
H A DMultiChoiceConfigAttribute.java74 // The set of pending values for this attribute.
232 * @param pendingValues The set of pending values for this
339 * Retrieves the pending value for this configuration attribute as a string.
341 * attribute does not have any pending values, then the active value will be
344 * @return The pending value for this configuration attribute as a string.
347 * pending value.
375 * Retrieves the set of pending values for this configuration attribute. If
376 * there are no pending values, then the set of active values will be
379 * @return The set of pending values for this configuration attribute.
526 // Apply this value set to the new active or pending valu
968 _toJMXAttribute(boolean pending) argument
[all...]

Completed in 46 milliseconds

123