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

org.spincast.plugins.httpclient.FileToUpload Maven / Gradle / Ivy

There is a newer version: 0.9.21
Show newest version
package org.spincast.plugins.httpclient;

/**
 * Information on a file to upload.
 */
public class FileToUpload {

    private final String path;
    private final boolean isClasspathPath;
    private final String name;

    public FileToUpload(String path, boolean isClasspathPath, String name) {
        this.path = path;
        this.isClasspathPath = isClasspathPath;
        this.name = name;
    }

    public String getPath() {
        return this.path;
    }

    public boolean isClasspathPath() {
        return this.isClasspathPath;
    }

    public String getName() {
        return this.name;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy