All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jcabi.http.RequestBody Maven / Gradle / Ivy

/*
 * Copyright (c) 2011-2017, jcabi.com
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met: 1) Redistributions of source code must retain the above
 * copyright notice, this list of conditions and the following
 * disclaimer. 2) Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided
 * with the distribution. 3) Neither the name of the jcabi.com nor
 * the names of its contributors may be used to endorse or promote
 * products derived from this software without specific prior written
 * permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package com.jcabi.http;

import com.jcabi.aspects.Immutable;
import java.nio.charset.StandardCharsets;
import java.util.Map;
import javax.json.JsonStructure;

/**
 * Request body.
 *
 * 

Instance of this interface is returned by {@link Request#body()}, * and can be modified using one of the methods below. When modification * is done, method {@code back()} returns a modified instance of * {@link Request}, for example: * *

 new JdkRequest("http://my.example.com")
 *   .header("Content-Type", "application/x-www-form-urlencoded")
 *   .body()
 *   .formParam("name", "Jeff Lebowski")
 *   .formParam("age", "37")
 *   .formParam("employment", "none")
 *   .back() // returns a modified instance of Request
 *   .fetch()
* *

Instances of this interface are immutable and thread-safe. * * @since 0.8 */ @Immutable public interface RequestBody { /** * Get back to the request it's related to. * @return The request we're in */ Request back(); /** * Get text content. * @return Content in UTF-8 */ String get(); /** * Set text content. * @param body Body content * @return New alternated body */ RequestBody set(String body); /** * Set JSON content. * @param json JSON object * @return New alternated body * @since 0.11 */ RequestBody set(JsonStructure json); /** * Set byte array content. * @param body Body content * @return New alternated body */ RequestBody set(byte[] body); /** * Add form param. * @param name Query param name * @param value Value of the query param to set * @return New alternated body */ RequestBody formParam(String name, Object value); /** * Add form params. * @param params Map of params * @return New alternated body * @since 0.10 */ RequestBody formParams(Map params); /** * Printer of byte array. * * @since 1.0 */ @Immutable final class Printable { /** * Byte array. */ @Immutable.Array private final transient byte[] array; /** * Ctor. * @param bytes Bytes to encapsulate */ public Printable(final byte[] bytes) { this.array = bytes; } @Override public String toString() { final StringBuilder text = new StringBuilder(0); final char[] chrs = new String( this.array, StandardCharsets.UTF_8 ).toCharArray(); if (chrs.length > 0) { for (final char chr : chrs) { // @checkstyle MagicNumber (1 line) if (chr < 128) { text.append(chr); } else { text.append("\\u").append( Integer.toHexString(chr) ); } } } else { text.append("<>"); } return text.toString(); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy