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

com.clouway.friendlyserve.RsText Maven / Gradle / Ivy

There is a newer version: 0.1.5
Show newest version
package com.clouway.friendlyserve;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.util.Collections;
import java.util.Map;

/**
 * @author Miroslav Genov ([email protected])
 */
public class RsText implements Response {
  private final String body;

  public RsText(String body) {
    this.body = body;
  }

  @Override
  public Status status() {
    return new Status(HttpURLConnection.HTTP_OK);
  }

  @Override
  public Map header() throws IOException {
    return Collections.emptyMap();
  }

  @Override
  public InputStream body() throws IOException {
    return new ByteArrayInputStream(body.getBytes());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy