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

com.pdd.pop.sdk.http.FileItem Maven / Gradle / Ivy

There is a newer version: 1.10.85
Show newest version
package com.pdd.pop.sdk.http;

import java.io.File;

/**
 * @author galuowa
 */
public class FileItem {

    private String fileName;
    private String filePath;

    public FileItem(String fileName, String filePath) {
        this.fileName = fileName;
        this.filePath = filePath;
    }

    public String getFileName() {
        return fileName;
    }

    public File getFile() {
        return new File(filePath);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy