/forgerock/opendj-b2.6/tests/staf-tests/shared/dsml/src/com/ibm/staf/service/opends/tester/ |
H A D | ResponseChecker.java | 53 private String body; field in class:ResponseChecker 69 // finally fill sb with body of request 87 this.body = sb.toString(); 103 SOAPMessage message = messageFactory.createMessage(mimeHeaders, new ByteArrayInputStream(this.body.getBytes()));
|
/forgerock/opendj2/tests/staf-tests/shared/dsml/src/com/ibm/staf/service/opends/tester/ |
H A D | ResponseChecker.java | 52 private String body; field in class:ResponseChecker 68 // finally fill sb with body of request 86 this.body = sb.toString(); 102 SOAPMessage message = messageFactory.createMessage(mimeHeaders, new ByteArrayInputStream(this.body.getBytes()));
|
/forgerock/opendj2.6.2/tests/staf-tests/shared/dsml/src/com/ibm/staf/service/opends/tester/ |
H A D | ResponseChecker.java | 53 private String body; field in class:ResponseChecker 69 // finally fill sb with body of request 87 this.body = sb.toString(); 103 SOAPMessage message = messageFactory.createMessage(mimeHeaders, new ByteArrayInputStream(this.body.getBytes()));
|
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/dsml/src/com/ibm/staf/service/opends/tester/ |
H A D | ResponseChecker.java | 53 private String body; field in class:ResponseChecker 69 // finally fill sb with body of request 87 this.body = sb.toString(); 103 SOAPMessage message = messageFactory.createMessage(mimeHeaders, new ByteArrayInputStream(this.body.getBytes()));
|
/forgerock/opendj2-hg/tests/staf-tests/shared/dsml/src/com/ibm/staf/service/opends/tester/ |
H A D | ResponseChecker.java | 52 private String body; field in class:ResponseChecker 68 // finally fill sb with body of request 86 this.body = sb.toString(); 102 SOAPMessage message = messageFactory.createMessage(mimeHeaders, new ByteArrayInputStream(this.body.getBytes()));
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/oauth2/restlet/ |
H A D | RestletOAuth2Request.java | 49 private JsonValue body; field in class:RestletOAuth2Request 74 * <li>as the body</li> 87 //query param priority over body 96 // restore the entity body 136 if (body == null) { 140 body = new JsonValue(representation.getObject()); 146 return body;
|
H A D | TokenIntrospectionResource.java | 57 * @param body The body - this is ignored but needs to be present to be made available in the request. 63 public Representation introspect(Representation body) throws OAuth2RestletException { argument
|
H A D | DeviceCodeResource.java | 83 public Representation issueCode(Representation body) throws OAuth2RestletException { argument
|
/forgerock/openam-v13/openam-oauth2-common/openid-connect-restlet/src/main/java/org/forgerock/openidconnect/restlet/ |
H A D | UserInfo.java | 71 public Representation getUserInfo(Representation body) throws OAuth2RestletException { argument
|
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/api/http/ |
H A D | GroovyHttpClient.java | 66 * @param body The body of the http request 71 public HttpClientResponse post(String uri, String body, Map<String, List<Map<String,String>>> requestData) argument 74 return getHttpClientResponse(uri, body, requestData, "POST");
|
H A D | JavaScriptHttpClient.java | 66 * @param body The body of the http request 71 public HttpClientResponse post(String uri, String body, NativeObject requestData) argument 74 return getHttpClientResponse(uri, body, convertRequestData(requestData), "POST");
|
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/ |
H A D | WebServiceRequestInputStream.java | 38 public WebServiceRequestInputStream(String body, String encoding) argument 40 setInputStream(new ByteArrayInputStream(body.getBytes(encoding)));
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/restlet/ |
H A D | TokenIntrospectionResource.java | 57 * @param body The body - this is ignored but needs to be present to be made available in the request. 63 public Representation introspect(Representation body) throws OAuth2RestletException { argument
|
H A D | DeviceCodeResource.java | 83 public Representation issueCode(Representation body) throws OAuth2RestletException { argument
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/restlet/ |
H A D | UserInfo.java | 71 public Representation getUserInfo(Representation body) throws OAuth2RestletException { argument
|
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/ |
H A D | PushMessage.java | 31 private final String body; field in class:PushMessage 38 * @param body The message to contain within the message. May not be null. 43 public PushMessage(String recipient, String body, String subject, String messageId) { argument 45 Reject.ifNull(body); 49 this.body = body; 62 * @param body The data to contain within the message. May not be null. 65 public PushMessage(String recipient, String body, String subject) { argument 66 this(recipient, body, subject, null); 82 return body; [all...] |
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/api/http/ |
H A D | GroovyHttpClient.java | 68 * @param body The body of the http request 73 public HttpClientResponse post(String uri, String body, Map<String, List<Map<String,String>>> requestData) argument 76 return getHttpClientResponse(uri, body, requestData, "POST");
|
H A D | JavaScriptHttpClient.java | 68 * @param body The body of the http request 73 public HttpClientResponse post(String uri, String body, NativeObject requestData) argument 76 return getHttpClientResponse(uri, body, convertRequestData(requestData), "POST");
|
/forgerock/openam-v13/openam-http-client/src/main/java/org/forgerock/http/client/ |
H A D | RestletHttpClient.java | 45 protected HttpClientResponse getHttpClientResponse(String uri, String body, Map<String, List<Map<String,String>>> requestData, String method) throws UnsupportedEncodingException { argument 50 httpClientRequest.setEntity(body);
|
/forgerock/openam/openam-http-client/src/main/java/org/forgerock/http/client/ |
H A D | RestletHttpClient.java | 49 String uri, String body, Map<String, List<Map<String, String>>> requestData, String method) 55 httpClientRequest.setEntity(body); 48 getHttpClientResponse( String uri, String body, Map<String, List<Map<String, String>>> requestData, String method) argument
|
/forgerock/opendj-b2.6/src/server/org/opends/server/util/ |
H A D | EMailMessage.java | 93 // The MIME type for the message body. 102 // The body for the mail message. 103 private MessageBuilder body; field in class:EMailMessage 122 body = new MessageBuilder(); 143 body = new MessageBuilder(); 236 * Retrieves the body for this message. It may be directly manipulated by the 239 * @return The body for this message. 243 return body; 249 * Specifies the body for this message. 251 * @param body Th 253 setBody(MessageBuilder body) argument 265 setBody(Message body) argument [all...] |
/forgerock/opendj2/src/server/org/opends/server/util/ |
H A D | EMailMessage.java | 92 // The MIME type for the message body. 101 // The body for the mail message. 102 private MessageBuilder body; field in class:EMailMessage 121 body = new MessageBuilder(); 142 body = new MessageBuilder(); 235 * Retrieves the body for this message. It may be directly manipulated by the 238 * @return The body for this message. 242 return body; 248 * Specifies the body for this message. 250 * @param body Th 252 setBody(MessageBuilder body) argument 264 setBody(Message body) argument [all...] |
/forgerock/opendj2.6.2/src/server/org/opends/server/util/ |
H A D | EMailMessage.java | 93 // The MIME type for the message body. 102 // The body for the mail message. 103 private MessageBuilder body; field in class:EMailMessage 122 body = new MessageBuilder(); 143 body = new MessageBuilder(); 236 * Retrieves the body for this message. It may be directly manipulated by the 239 * @return The body for this message. 243 return body; 249 * Specifies the body for this message. 251 * @param body Th 253 setBody(MessageBuilder body) argument 265 setBody(Message body) argument [all...] |
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/ |
H A D | EMailMessage.java | 93 // The MIME type for the message body. 102 // The body for the mail message. 103 private MessageBuilder body; field in class:EMailMessage 122 body = new MessageBuilder(); 143 body = new MessageBuilder(); 236 * Retrieves the body for this message. It may be directly manipulated by the 239 * @return The body for this message. 243 return body; 249 * Specifies the body for this message. 251 * @param body Th 253 setBody(MessageBuilder body) argument 265 setBody(Message body) argument [all...] |
/forgerock/opendj2-hg/src/server/org/opends/server/util/ |
H A D | EMailMessage.java | 92 // The MIME type for the message body. 101 // The body for the mail message. 102 private MessageBuilder body; field in class:EMailMessage 121 body = new MessageBuilder(); 142 body = new MessageBuilder(); 235 * Retrieves the body for this message. It may be directly manipulated by the 238 * @return The body for this message. 242 return body; 248 * Specifies the body for this message. 250 * @param body Th 252 setBody(MessageBuilder body) argument 264 setBody(Message body) argument [all...] |