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

com.dounine.clouddisk360.parser.deserializer.file.info.FileInfoParameter Maven / Gradle / Ivy

package com.dounine.clouddisk360.parser.deserializer.file.info;

import com.dounine.clouddisk360.parser.deserializer.BaseParameter;
import com.dounine.clouddisk360.parser.deserializer.file.list.FileListParameter;

public class FileInfoParameter extends BaseParameter {

	private String filePath;
	private FileListParameter fileListParameter = new FileListParameter();

	public FileListParameter getFileListParameter() {
		return fileListParameter;
	}

	public void setFileListParameter(FileListParameter fileListParameter) {
		this.fileListParameter = fileListParameter;
	}

	public String getFilePath() {
		return filePath;
	}

	public void setFilePath(String filePath) {
		this.filePath = filePath;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy