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

artoria.action.handler.ImportHandler Maven / Gradle / Ivy

The newest version!
package artoria.action.handler;

import artoria.action.ActionHandler;

import java.util.List;

/**
 * The import handler.
 * @param 

The import parameter type * @param The type of data parsed * @author Kahle */ public interface ImportHandler extends ActionHandler, ImportExportHandler { List parseData(ImportContext

context, Object cursor, Object rawData); class ImportContext

extends ImportExportContext

{ private Object fileData; private String filename; private Long fileSize; private String contentType; public Object getFileData() { return fileData; } public void setFileData(Object fileData) { this.fileData = fileData; } public String getFilename() { return filename; } public void setFilename(String filename) { this.filename = filename; } public Long getFileSize() { return fileSize; } public void setFileSize(Long fileSize) { this.fileSize = fileSize; } public String getContentType() { return contentType; } public void setContentType(String contentType) { this.contentType = contentType; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy