Searched defs:send (Results 1 - 25 of 55) sorted by relevance

123

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/server/
H A DPLLServer.java37 * applications to send NotificationSet XML documents to destination URL
38 * identified in the send() method. It also provides static methods to add,
66 public static void send(URL url, NotificationSet set) method in class:PLLServer
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/comm/server/
H A DPLLServer.java37 * applications to send NotificationSet XML documents to destination URL
38 * identified in the send() method. It also provides static methods to add,
66 public static void send(URL url, NotificationSet set) method in class:PLLServer
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/api/http/
H A DGroovyHttpClient.java60 DEBUG.warning("'get' has been deprecated. Use 'send' instead");
73 DEBUG.warning("'post' has been deprecated. Use 'send' instead");
82 * The HTTP request to send.
85 public Promise<Response, NeverThrowsException> send(final Request request) { method in class:GroovyHttpClient
86 return client.send(request);
H A DJavaScriptHttpClient.java60 DEBUG.warning("'get' has been deprecated. Use 'send' instead");
73 DEBUG.warning("'post' has been deprecated. Use 'send' instead");
82 * The HTTP request to send.
85 public Promise<Response, NeverThrowsException> send(final Request request) { method in class:JavaScriptHttpClient
86 return client.send(request);
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/api/http/
H A DGroovyHttpClient.java62 DEBUG.warning("'get' has been deprecated. Use 'send' instead");
75 DEBUG.warning("'post' has been deprecated. Use 'send' instead");
84 * The HTTP request to send.
87 public Promise<Response, NeverThrowsException> send(final Request request) { method in class:GroovyHttpClient
88 return client.send(request);
H A DJavaScriptHttpClient.java62 DEBUG.warning("'get' has been deprecated. Use 'send' instead");
75 DEBUG.warning("'post' has been deprecated. Use 'send' instead");
84 * The HTTP request to send.
87 public Promise<Response, NeverThrowsException> send(final Request request) { method in class:JavaScriptHttpClient
88 return client.send(request);
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/
H A DPushNotificationDelegate.java47 * Used to send a message out to the PushNotificationDelegate to be delivered.
48 * @param message The message to send.
50 void send(PushMessage message); method in interface:PushNotificationDelegate
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/client/
H A DPLLClient.java63 * The <code>PLLClient</code> class is used to send RequestSet XML documents
64 * to the URL specified in the send() method. The high level services and
98 public static Vector send(URL url, RequestSet set) method in class:PLLClient
100 return send(url, null, set, null);
117 public static Vector send(URL url, String cookies, RequestSet set) method in class:PLLClient
119 return send(url, cookies, set, null);
137 public static Vector send(URL url, RequestSet set, HashMap cookieTable) method in class:PLLClient
139 return send(url, null, set, cookieTable);
146 private static Vector send(URL url, String cookies, RequestSet set, method in class:PLLClient
223 debug.warning("PLLClient.send
[all...]
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/sns/
H A DSnsHttpDelegate.java67 public void send(PushMessage message) { method in class:SnsHttpDelegate
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/comm/client/
H A DPLLClient.java63 * The <code>PLLClient</code> class is used to send RequestSet XML documents
64 * to the URL specified in the send() method. The high level services and
98 public static Vector send(URL url, RequestSet set) method in class:PLLClient
100 return send(url, null, set, null);
117 public static Vector send(URL url, String cookies, RequestSet set) method in class:PLLClient
119 return send(url, cookies, set, null);
137 public static Vector send(URL url, RequestSet set, HashMap cookieTable) method in class:PLLClient
139 return send(url, null, set, cookieTable);
146 private static Vector send(URL url, String cookies, RequestSet set, method in class:PLLClient
223 debug.warning("PLLClient.send UR
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DEMailMessage.java350 * Attempts to send this message to the intended recipient(s). This will use
356 * @throws MessagingException If a problem occurred while attempting to send
359 public void send() method in class:EMailMessage
362 send(DirectoryServer.getMailServerPropertySets());
368 * Attempts to send this message to the intended recipient(s). If multiple
376 * @throws MessagingException If a problem occurred while attempting to send
379 public void send(List<Properties> mailServerPropertySets) method in class:EMailMessage
464 // Try to send the message. If this fails, it can be a complete failure
471 Transport.send(message);
666 message.send(mailServerPropertie
[all...]
/forgerock/opendj2/src/server/org/opends/server/util/
H A DEMailMessage.java349 * Attempts to send this message to the intended recipient(s). This will use
355 * @throws MessagingException If a problem occurred while attempting to send
358 public void send() method in class:EMailMessage
361 send(DirectoryServer.getMailServerPropertySets());
367 * Attempts to send this message to the intended recipient(s). If multiple
375 * @throws MessagingException If a problem occurred while attempting to send
378 public void send(List<Properties> mailServerPropertySets) method in class:EMailMessage
463 // Try to send the message. If this fails, it can be a complete failure
470 Transport.send(message);
665 message.send(mailServerPropertie
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DEMailMessage.java350 * Attempts to send this message to the intended recipient(s). This will use
356 * @throws MessagingException If a problem occurred while attempting to send
359 public void send() method in class:EMailMessage
362 send(DirectoryServer.getMailServerPropertySets());
368 * Attempts to send this message to the intended recipient(s). If multiple
376 * @throws MessagingException If a problem occurred while attempting to send
379 public void send(List<Properties> mailServerPropertySets) method in class:EMailMessage
464 // Try to send the message. If this fails, it can be a complete failure
471 Transport.send(message);
666 message.send(mailServerPropertie
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/
H A DEMailMessage.java350 * Attempts to send this message to the intended recipient(s). This will use
356 * @throws MessagingException If a problem occurred while attempting to send
359 public void send() method in class:EMailMessage
362 send(DirectoryServer.getMailServerPropertySets());
368 * Attempts to send this message to the intended recipient(s). If multiple
376 * @throws MessagingException If a problem occurred while attempting to send
379 public void send(List<Properties> mailServerPropertySets) method in class:EMailMessage
464 // Try to send the message. If this fails, it can be a complete failure
471 Transport.send(message);
666 message.send(mailServerPropertie
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DEMailMessage.java349 * Attempts to send this message to the intended recipient(s). This will use
355 * @throws MessagingException If a problem occurred while attempting to send
358 public void send() method in class:EMailMessage
361 send(DirectoryServer.getMailServerPropertySets());
367 * Attempts to send this message to the intended recipient(s). If multiple
375 * @throws MessagingException If a problem occurred while attempting to send
378 public void send(List<Properties> mailServerPropertySets) method in class:EMailMessage
463 // Try to send the message. If this fails, it can be a complete failure
470 Transport.send(message);
665 message.send(mailServerPropertie
[all...]
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/
H A DRadiusRequestContext.java44 * handler to send a response.
67 * called RadiusResponseHandler's send method or not.
72 * The authenticator from the request for use in producing the response's authenticator field at send time.
149 public void send(Packet response) throws RadiusProcessingException { method in class:RadiusRequestContext
153 + clientConfig.getName() + " called send more than once.");
161 + clientConfig.getName() + " attempted to send a null response. Rejecting access.");
162 send(new AccessReject());
177 channel.send(reqBuf, source);
179 LOG.error("Unable to send response to " + clientConfig.getName() + ".", e);
212 "Failed to send Radiu
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DEMailMessage.java367 * Attempts to send this message to the intended recipient(s). This will use
373 * @throws MessagingException If a problem occurred while attempting to send
376 public void send() method in class:EMailMessage
379 send(DirectoryServer.getMailServerPropertySets());
385 * Attempts to send this message to the intended recipient(s). If multiple
393 * @throws MessagingException If a problem occurred while attempting to send
396 public void send(List<Properties> mailServerPropertySets) method in class:EMailMessage
473 // Try to send the message. If this fails, it can be a complete failure
480 Transport.send(message);
669 message.send(mailServerPropertie
[all...]
/forgerock/openidm-v4/openidm-external-email/src/main/java/org/forgerock/openidm/external/email/impl/
H A DEmailClient.java110 public void send(JsonValue params) throws BadRequestException { method in class:EmailClient
/forgerock/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/
H A DRadiusRequestContext.java44 * handler to send a response.
67 * called RadiusResponseHandler's send method or not.
72 * The authenticator from the request for use in producing the response's authenticator field at send time.
149 public void send(Packet response) throws RadiusProcessingException { method in class:RadiusRequestContext
153 + clientConfig.getName() + " called send more than once.");
161 + clientConfig.getName() + " attempted to send a null response. Rejecting access.");
162 send(new AccessReject());
177 channel.send(reqBuf, source);
179 LOG.error("Unable to send response to " + clientConfig.getName() + ".", e);
212 "Failed to send Radiu
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DSession.java348 send(buffer);
358 private void send(final byte[] buffer) throws IOException method in class:Session
589 send(buffer);
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DSession.java354 send(buffer);
364 private void send(final byte[] buffer) throws IOException method in class:Session
581 send(buffer);
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DSession.java348 send(buffer);
358 private void send(final byte[] buffer) throws IOException method in class:Session
589 send(buffer);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DSession.java348 send(buffer);
358 private void send(final byte[] buffer) throws IOException method in class:Session
589 send(buffer);
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DSession.java354 send(buffer);
364 private void send(final byte[] buffer) throws IOException method in class:Session
581 send(buffer);
/forgerock/openam-v13/openam-authentication/openam-auth-radius/src/main/java/com/sun/identity/authentication/modules/radius/client/
H A DRadiusConn.java263 send(packet, server);
337 private void send(Packet packet, RADIUSServer server) method in class:RadiusConn
349 socket.send(dp);
467 testSocket.send(dp);

Completed in 195 milliseconds

123