Uses of Class
org.silverpeas.core.io.upload.UploadedFile
-
Packages that use UploadedFile Package Description org.silverpeas.core.contribution.attachment.model org.silverpeas.core.io.upload Provides an API to manage file uploads.org.silverpeas.core.web.http org.silverpeas.core.webapi.documenttemplate -
-
Uses of UploadedFile in org.silverpeas.core.contribution.attachment.model
Method parameters in org.silverpeas.core.contribution.attachment.model with type arguments of type UploadedFile Modifier and Type Method Description static Attachments
Attachments. from(Collection<UploadedFile> uploadedFiles)
Creates a collection of attachments from the specified uploaded files. -
Uses of UploadedFile in org.silverpeas.core.io.upload
Methods in org.silverpeas.core.io.upload that return UploadedFile Modifier and Type Method Description static UploadedFile
UploadedFile. from(Map<String,String[]> parameters, String uploadSessionId, User uploader)
Creates a representation of an uploaded file from the specified file parameters, the upload session identifier and the user uploading the file.Methods in org.silverpeas.core.io.upload that return types with arguments of type UploadedFile Modifier and Type Method Description static List<UploadedFile>
FileUploadManager. getUploadedFiles(Map<String,String[]> parameters, User uploader)
Retrieves from the given dictionary of uploaded files parameters a collection ofUploadedFile
objects.static List<UploadedFile>
FileUploadManager. getUploadedFiles(javax.servlet.http.HttpServletRequest request, User uploader)
Retrieves from the givenHttpServletRequest
instance a collection ofUploadedFile
objects. -
Uses of UploadedFile in org.silverpeas.core.web.http
Methods in org.silverpeas.core.web.http that return types with arguments of type UploadedFile Modifier and Type Method Description Collection<UploadedFile>
HttpRequest. getUploadedFiles()
Retrieves fromHttpServletRequest
a collection ofUploadedFile
. -
Uses of UploadedFile in org.silverpeas.core.webapi.documenttemplate
Methods in org.silverpeas.core.webapi.documenttemplate with parameters of type UploadedFile Modifier and Type Method Description DocumentTemplate
DocumentTemplateWebManager. createDocumentTemplate(DocumentTemplate newDocumentTemplate, UploadedFile content)
Creates a category into Silverpeas's context.DocumentTemplate
DocumentTemplateWebManager. updateDocumentTemplate(DocumentTemplate updatedDocumentTemplate, UploadedFile content)
Updates a document template into Silverpeas's context.
-