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

com.github.nezha.httpfetch.resolver.ImageParam Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.nezha.httpfetch.resolver;

import com.alibaba.fastjson.annotation.JSONField;

import java.awt.image.BufferedImage;

/**
 * Created by daiqiang on 17/7/24.
 */
public class ImageParam {

    @JSONField(name = "image", serialize = false, deserialize = false)
    private BufferedImage image;

    private String imageName;

    public BufferedImage getImage() {
        return image;
    }

    public void setImage(BufferedImage image) {
        this.image = image;
    }

    public String getImageName() {
        return imageName;
    }

    public void setImageName(String imageName) {
        this.imageName = imageName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy