Example usage for org.apache.http.entity StringEntity subclass-usage

List of usage examples for org.apache.http.entity StringEntity subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.entity StringEntity subclass-usage.

Usage

From source file com.joyent.manta.http.entity.ExposedStringEntity.java

/**
 * @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
 * @since 3.0.0
 */
public class ExposedStringEntity extends StringEntity implements MemoryBackedEntity {
    /**

From source file jetbrains.teamcilty.github.api.impl.GSonEntity.java

/**
* Created by Eugene Petrenko (eugene.petrenko@gmail.com)
* Date: 04.03.13 22:32
*/
public class GSonEntity extends StringEntity {
    @NotNull

From source file org.jetbrains.teamcity.publisher.github.api.impl.GSonEntity.java

/**
* Created by Eugene Petrenko (eugene.petrenko@gmail.com)
* Date: 04.03.13 22:32
*/
public class GSonEntity extends StringEntity {
    @NotNull

From source file io.github.data4all.util.upload.CallbackStringEntry.java

/**
 * A custom StringEntity which encapsulates the {@link OutputStream} with a
 * {@link CallbackOutputStream} to provide a callback for the progress of
 * reading from its String content.
 * 
 * @author tbrose

From source file jetbrains.buildServer.commitPublisher.github.api.impl.GSonEntity.java

/**
* Created by Eugene Petrenko (eugene.petrenko@gmail.com)
* Date: 04.03.13 22:32
*/
public class GSonEntity extends StringEntity {
    @NotNull

From source file com.nominanuda.web.mvc.JsonEntity.java

public class JsonEntity extends StringEntity implements HttpProtocol {
    private static final DataStructHelper dataStructHelper = new DataStructHelper();

    public JsonEntity(DataStruct json) throws UnsupportedEncodingException {
        this(json, "UTF-8");
    }

From source file com.ibm.watson.app.common.util.rest.JSONEntity.java

/**
 * A convenience class to convert an Object into a {@link StringEntity} as JSON 
 */
public class JSONEntity extends StringEntity {
    private static final Gson gson = new GsonBuilder()
            .setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES).create();

From source file onl.area51.httpd.rest.JsonEntity.java

/**
 * Entity for returning Json objects
 *
 * @author peter
 */
public class JsonEntity extends StringEntity implements Cloneable {

From source file com.pocketsoap.convodroid.http.JsonEntity.java

/**
 * @author @superfell
 *
 */
public class JsonEntity extends StringEntity {

From source file org.mariotaku.twidere.util.net.UrlEncodedFormEntity.java

/**
 * An entity composed of a list of url-encoded pairs. This is typically useful
 * while sending an HTTP POST request.
 * 
 * @since 4.0
 */