eleme.openapi.sdk.media.manage.FileResource Maven / Gradle / Ivy
package eleme.openapi.sdk.media.manage;
import java.io.Serializable;
/**
* @author hyzhou.zhy. 2015/06/04.
*
* FileResource
*
* By specifying the Name Dir, the only file is identified under the current configuration of the Namespace.
* Generally used in the operation of the current Namespace, such as file and directory query, file upload and so on.
*
*/
public class FileResource implements Serializable {
private static final long serialVersionUID = -1680692713727152021L;
private String dir;
private String name;
public FileResource() {
}
public FileResource(String dir, String name) {
this.dir = dir;
this.name = name;
}
public String getDir() {
return dir;
}
public void setDir(String dir) {
this.dir = dir;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy