Searched defs:notifications (Results 1 - 25 of 58) sorted by relevance

123

/forgerock/openam/openam-notifications/src/main/java/org/forgerock/openam/notifications/
H A Dpackage-info.java20 package org.forgerock.openam.notifications
H A DConsumer.java17 package org.forgerock.openam.notifications;
22 * A consumer is associated with a given subscription and is passed notifications
H A DObjectFactory.java17 package org.forgerock.openam.notifications;
H A DServiceLoaderObjectFactory.java17 package org.forgerock.openam.notifications;
H A DSubscription.java17 package org.forgerock.openam.notifications;
25 * it will not receive any more notifications.
32 * Updates the subscription to receive notifications for the given topic.
40 * Updates the subscription to stop receiving notifications for the given topic.
56 * Closes the subscription. After a subscription is closed no more notifications will be delivered to the consumer.
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAMechanism.h50 @property (getter=notifications, nonatomic, readonly) NSArray<FRANotification *> *notifications; variable
88 * Count of notifications that have not yet been dealt with.
90 * @return The number of pending notifications.
/forgerock/openam/openam-notifications-websocket/src/main/java/org/forgerock/openam/notifications/websocket/
H A Dpackage-info.java18 * Contains implementation to expose notifications over websockets.
20 package org.forgerock.openam.notifications.websocket
H A DNotificationsWebSocketConfigurator.java17 package org.forgerock.openam.notifications.websocket;
21 import org.forgerock.openam.notifications.ServiceLoaderObjectFactory;
H A DJsonValueDecoder.java17 package org.forgerock.openam.notifications.websocket;
H A DJsonValueEncoder.java17 package org.forgerock.openam.notifications.websocket;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/notifications/
H A DLocalOnly.java17 package org.forgerock.openam.notifications;
27 * Indicates that the injected {@link org.forgerock.openam.notifications.NotificationBroker} will
28 * only send notifications to the OpenAM server that the message is published from.
H A DNotificationsConfig.java17 package org.forgerock.openam.notifications;
27 * Provides notifications configuration.
50 * Whether notifications for agents is enabled.
52 * @return whether notifications for agents is enabled
/forgerock/openam/openam-notifications/src/main/java/org/forgerock/openam/notifications/brokers/
H A Dpackage-info.java18 * Contains {@link org.forgerock.openam.notifications.NotificationBroker} implementations.
20 package org.forgerock.openam.notifications.brokers
/forgerock/openam/openam-notifications-integration/src/main/java/org/forgerock/openam/notifications/integration/
H A Dpackage-info.java18 * Contains the glue between notifications and OpenAM.
20 package org.forgerock.openam.notifications.integration
H A DNotificationsShutdown.java17 package org.forgerock.openam.notifications.integration;
20 import org.forgerock.openam.notifications.NotificationBroker;
H A DGuiceObjectFactory.java17 package org.forgerock.openam.notifications.integration;
20 import org.forgerock.openam.notifications.ObjectFactory;
/forgerock/openam/openam-notifications-integration/src/main/java/org/forgerock/openam/notifications/integration/brokers/
H A Dpackage-info.java18 * Contains OpenAM-specific {@link org.forgerock.openam.notifications.NotificationBroker} implementations.
20 package org.forgerock.openam.notifications.integration.brokers
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/client/
H A DNotificationHandler.java36 * notifications from the Platform Low Level API. The handler registration is
46 * applications in order to receive notifications from the Platform Low
49 * @param notifications
52 public void process(Vector notifications); argument
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/arch/
H A DAgentConfigNotificationHandler.java39 * processes the notifications for agent property configurations.
66 * @param notifications array of notifications to be processed.
68 public void process(Vector notifications) { argument
69 if (notifications != null) {
71 //to process first one, can ignore others if more notifications.
73 if (notifications.size() > 0) {
75 (Notification) notifications.elementAt(0);
/forgerock/openam/openam-notifications-integration/src/test/java/org/forgerock/openam/notifications/brokers/
H A DMockTimeService.java17 package org.forgerock.openam.notifications.brokers;
/forgerock/openam/openam-notifications-websocket/src/test/java/org/forgerock/openam/notifications/websocket/
H A DJsonValueDecoderTest.java17 package org.forgerock.openam.notifications.websocket;
H A DJsonValueEncoderTest.java17 package org.forgerock.openam.notifications.websocket;
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/comm/client/
H A DNotificationHandler.java38 * notifications from the Platform Low Level API. The handler registration is
48 * applications in order to receive notifications from the Platform Low
51 * @param notifications
54 public void process(Vector<Notification> notifications); argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/client/
H A DPolicyNotificationHandler.java42 * Class that handles policy notifications from
46 * This handler delegates the handling of notifications to
66 * Processes PLL notifications
67 * @param notifications PLL notification to be processed
69 public void process(Vector notifications) { argument
70 processPLLNotifications(notifications);
74 * Processes PLL notifications
75 * @param notifications PLL notification to be processed
77 void processPLLNotifications(Vector notifications) { argument
78 for (int i = 0; i < notifications
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/
H A DSessionNotificationHandler.java44 * <code>NotificationHandler</code> processes the notifications for a session
66 * @param notifications array of notifications to be processed.
68 public void process(Vector<Notification> notifications) { argument
69 for (int i = 0; i < notifications.size(); i++) {
70 Notification notification = notifications.elementAt(i);

Completed in 98 milliseconds

123