During an upgrade from Liferay portal 5.2.3 to 6.0.6, I discovered that the class com.liferay.portlet.documentlibrary.form.FileEntryForm
has been removed.
On the web there is no help and my use of this class was:
public ActionForward execute(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) throws Exception {
FileEntryForm fileEntryForm = (FileEntryForm)form;
FormFile formFile = (FormFile) fileEntryForm.getMultipartRequestHandler().getFileElements().get("file");
}
How can I fix this?
Thanks to all