Searched refs:send (Results 1 - 25 of 192) sorted by relevance

12345678

/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-core/src/main/java/org/forgerock/openam/log/handlers/syslog/
H A DSyslogUdpPublisher.java45 datagramSocket.send(packet);
/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/openam-push-notification/src/test/java/org/forgerock/openam/services/push/
H A DPushNotificationServiceTest.java85 notificationService.send(pushMessage, "realm");
88 verify(mockDelegate, times(1)).send(pushMessage);
99 notificationService.send(pushMessage, "realm2");
113 notificationService.send(pushMessage, "realm2");
117 verify(mockTestDelegate, times(1)).send(pushMessage);
128 notificationService.send(pushMessage, "realm2");
139 notificationService.send(pushMessage, "realm4");
152 notificationService.send(pushMessage, "realm2");
166 notificationService.send(pushMessage, "realm2");
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/log/handlers/syslog/
H A DSyslogUdpPublisher.java45 datagramSocket.send(packet);
/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);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entity/
H A DEntityObject.java90 return ((Set) client.send(client
124 client.send(client.encodeMessage("deleteEntity", objs),
155 return ((Map) client.send(client.encodeMessage("getEntity", objs),
189 return ((Set) client.send(client.encodeMessage("getEntityNames",
224 client.send(client.encodeMessage("modifyEntity", objs),
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entity/
H A DEntityObject.java90 return ((Set) client.send(client
124 client.send(client.encodeMessage("deleteEntity", objs),
155 return ((Map) client.send(client.encodeMessage("getEntity", objs),
189 return ((Set) client.send(client.encodeMessage("getEntityNames",
224 client.send(client.encodeMessage("modifyEntity", objs),
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/remote/
H A DRemoteServicesImpl.java134 Boolean res = ((Boolean) client.send(client.encodeMessage(
165 Integer res = ((Integer) client.send(client.encodeMessage(
237 return ((Map) client.send(client.encodeMessage(
275 Map map = (Map) client.send(client.encodeMessage("getAttributes1",
315 Map map = (Map) client.send(client.encodeMessage("getAttributes2",
359 return ((Map) client.send(client.encodeMessage(
396 return ((Map) client.send(client.encodeMessage(
455 Map map = (Map) client.send(client.encodeMessage("getAttributes3",
517 Map map = (Map) client.send(client.encodeMessage("getAttributes4",
552 return ((String) client.send(clien
[all...]
H A DComplianceServicesImpl.java62 Boolean res = ((Boolean) client.send(client.encodeMessage(
86 client.send(client.encodeMessage("verifyAndDeleteObject", objs),
108 return ((String) client.send(client.encodeMessage(
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/remote/
H A DRemoteServicesImpl.java134 Boolean res = ((Boolean) client.send(client.encodeMessage(
165 Integer res = ((Integer) client.send(client.encodeMessage(
237 return ((Map) client.send(client.encodeMessage(
275 Map map = (Map) client.send(client.encodeMessage("getAttributes1",
315 Map map = (Map) client.send(client.encodeMessage("getAttributes2",
359 return ((Map) client.send(client.encodeMessage(
396 return ((Map) client.send(client.encodeMessage(
455 Map map = (Map) client.send(client.encodeMessage("getAttributes3",
517 Map map = (Map) client.send(client.encodeMessage("getAttributes4",
552 return ((String) client.send(clien
[all...]
H A DComplianceServicesImpl.java62 Boolean res = ((Boolean) client.send(client.encodeMessage(
86 client.send(client.encodeMessage("verifyAndDeleteObject", objs),
108 return ((String) client.send(client.encodeMessage(
/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-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/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DAssertionManagerClient.java112 remoteStub.send("checkForLocal", null, null,null);
247 remoteStub.send("checkForLocal", null, null,null);
275 assertion = (String) stub.send("createAssertion", args, null,
318 assertion = (String) stub.send("createAssertion2", args, null,
356 aa = (String) stub.send("createAssertionArtifact", args, null,
403 assertion = (String) stub.send("getAssertionByIdRef", args, null,
448 assertion = (String) stub.send("getAssertionByIdRef2", args, null,
493 assertion = (String) stub.send("getAssertion", args, null,
526 assertion = (String) stub.send("getAssertion2", args, null,
563 assertion = (String) stub.send("getAssertionByIdRefToke
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DAssertionManagerClient.java112 remoteStub.send("checkForLocal", null, null,null);
247 remoteStub.send("checkForLocal", null, null,null);
275 assertion = (String) stub.send("createAssertion", args, null,
318 assertion = (String) stub.send("createAssertion2", args, null,
356 aa = (String) stub.send("createAssertionArtifact", args, null,
403 assertion = (String) stub.send("getAssertionByIdRef", args, null,
448 assertion = (String) stub.send("getAssertionByIdRef2", args, null,
493 assertion = (String) stub.send("getAssertion", args, null,
526 assertion = (String) stub.send("getAssertion2", args, null,
563 assertion = (String) stub.send("getAssertionByIdRefToke
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/remote/
H A DIdRemoteServicesImpl.java200 univid = (String) client.send(client.encodeMessage(
216 client.send(client.encodeMessage("delete_idrepo", objs),
230 res = (Map<String, Set<String>>) client.send(client.encodeMessage("getAttributes1_idrepo", objs),
258 Map<String, Set<String>> encodedAttributes = (Map<String, Set<String>>) client.send(
289 res = ((Map) client.send(client.encodeMessage(
316 client.send(client.encodeMessage("removeAttributes_idrepo", objs),
344 idResults = ((Map) client.send(client.encodeMessage("search2_idrepo", objects),
359 client.send(client.encodeMessage("setAttributes2_idrepo", objs),
374 client.send(client.encodeMessage("changePassword_idrepo", objs),
390 client.send(clien
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/remote/
H A DIdRemoteServicesImpl.java201 univid = (String) client.send(client.encodeMessage(
217 client.send(client.encodeMessage("delete_idrepo", objs),
231 res = (Map<String, Set<String>>) client.send(client.encodeMessage("getAttributes1_idrepo", objs),
259 Map<String, Set<String>> encodedAttributes = (Map<String, Set<String>>) client.send(
290 res = ((Map) client.send(client.encodeMessage(
317 client.send(client.encodeMessage("removeAttributes_idrepo", objs),
345 idResults = ((Map) client.send(client.encodeMessage("search2_idrepo", objects),
360 client.send(client.encodeMessage("setAttributes2_idrepo", objs),
375 client.send(client.encodeMessage("changePassword_idrepo", objs),
391 client.send(clien
[all...]
/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);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSecurityTokenManagerClient.java126 remoteStub.send("checkForLocal", null, null, null);
151 stub.send("initialization", ssoToken, null, ssoToken);
182 stub.send("initialization", ssoToken, null, ssoToken);
226 remoteStub.send("checkForLocal", null, null, null);
285 stub.send("setCertificate", obj, null, ssoToken);
313 stub.send("setCertificate", obj, null, ssoToken);
339 bst = (String) stub.send("getX509CertificateToken", null, null,
370 String assertion = (String) stub.send("getSAMLAuthenticationToken",
436 String assertion = (String) stub.send("getSAMLAuthorizationToken",
504 assertion = (String) stub.send("getSAMLAuthorizationToke
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSecurityTokenManagerClient.java126 remoteStub.send("checkForLocal", null, null, null);
151 stub.send("initialization", ssoToken, null, ssoToken);
182 stub.send("initialization", ssoToken, null, ssoToken);
226 remoteStub.send("checkForLocal", null, null, null);
285 stub.send("setCertificate", obj, null, ssoToken);
313 stub.send("setCertificate", obj, null, ssoToken);
339 bst = (String) stub.send("getX509CertificateToken", null, null,
370 String assertion = (String) stub.send("getSAMLAuthenticationToken",
436 String assertion = (String) stub.send("getSAMLAuthorizationToken",
504 assertion = (String) stub.send("getSAMLAuthorizationToke
[all...]
/forgerock/openam/openam-radius/openam-radius-server/src/test/java/org/forgerock/openam/radius/server/
H A DRadiusRequestHandlerTest.java87 verify(reqCtx, times(1)).send(isA(AccessAccept.class));
125 verify(reqCtx, times(1)).send(isA(AccessReject.class));
162 verify(reqCtx, never()).send(isA(Packet.class));
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/jaxrpc/
H A DSMSJAXRPCObject.java119 Map attrs = (Map) client.send(client.encodeMessage("read", objs),
142 client.send(client.encodeMessage("create", objs),
162 client.send(client.encodeMessage("modify", objs),
181 client.send(client.encodeMessage("delete", objs),
207 return ((Set<String>) client.send(client.encodeMessage("searchSubOrgNames",
235 return ((Set<String>) client.send(client.encodeMessage(
260 return ((Set<String>) client.send(client.encodeMessage("subEntries", objs),
285 return ((Set<String>) client.send(client.encodeMessage("schemaSubEntries",
311 Set<String> searchResults = ((Set<String>) client.send(client.encodeMessage("search3", objs),
348 return ((Set<String>) client.send(clien
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/jaxrpc/
H A DSMSJAXRPCObject.java121 Map attrs = (Map) client.send(client.encodeMessage("read", objs),
144 client.send(client.encodeMessage("create", objs),
164 client.send(client.encodeMessage("modify", objs),
183 client.send(client.encodeMessage("delete", objs),
209 return ((Set<String>) client.send(client.encodeMessage("searchSubOrgNames",
237 return ((Set<String>) client.send(client.encodeMessage(
262 return ((Set<String>) client.send(client.encodeMessage("subEntries", objs),
287 return ((Set<String>) client.send(client.encodeMessage("schemaSubEntries",
313 Set<String> searchResults = ((Set<String>) client.send(client.encodeMessage("search3", objs),
350 return ((Set<String>) client.send(clien
[all...]

Completed in 59 milliseconds

12345678