Package ubic.gemma.web.util.upload
Class UploadListener
- java.lang.Object
-
- ubic.gemma.web.util.upload.UploadListener
-
- All Implemented Interfaces:
OutputStreamListener
public class UploadListener extends Object implements OutputStreamListener
This is created when a multipart request is received (via the CommonsMultipartMonitoredResolver). It starts of a 'progress job',- Author:
- Original : plosson, pavlidis
-
-
Constructor Summary
Constructors Constructor Description UploadListener(javax.servlet.http.HttpServletRequest request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
bytesRead(int bytesRead)
void
done()
void
error(String message)
void
start()
-
-
-
Method Detail
-
bytesRead
public void bytesRead(int bytesRead)
- Specified by:
bytesRead
in interfaceOutputStreamListener
-
done
public void done()
- Specified by:
done
in interfaceOutputStreamListener
-
error
public void error(String message)
- Specified by:
error
in interfaceOutputStreamListener
-
start
public void start()
- Specified by:
start
in interfaceOutputStreamListener
-
-