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

cn.dreampie.common.http.result.ImageResult Maven / Gradle / Ivy

package cn.dreampie.common.http.result;

import java.awt.image.RenderedImage;

/**
 * Created by ice on 14-12-19.
 */
public class ImageResult {

  private final String type;
  private final T result;


  public ImageResult(String type, T result) {
    this.type = type;
    this.result = result;
  }

  public ImageResult(T result) {
    this.type = "png";
    this.result = result;
  }

  public String getType() {
    return type;
  }

  /**
   * Returns the content to use in the HTTP response .
   *
   * @return the content to use in the response.
   */
  public T getResult() {
    return result;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy