Uses of Class
com.shephertz.app42.paas.sdk.jme.upload.Upload

Packages that use Upload
com.shephertz.app42.paas.sdk.jme.upload   
 

Uses of Upload in com.shephertz.app42.paas.sdk.jme.upload
 

Methods in com.shephertz.app42.paas.sdk.jme.upload that return Upload
 Upload UploadResponseBuilder.buildResponse(java.lang.String json)
          Converts the response in JSON format to the value object i.e Upload
 Upload UploadService.getAllFiles()
          Gets all the files for the App
 Upload UploadService.getAllFiles(java.lang.Integer max, java.lang.Integer offset)
          Gets all the files By Paging for the App
 Upload UploadService.getAllFilesByUser(java.lang.String userName)
          Get all the file based on user name.
 Upload UploadService.getAllFilesByUser(java.lang.String userName, java.lang.Integer max, java.lang.Integer offset)
          Get all the files based on user name by Paging.
 Upload UploadService.getFileByName(java.lang.String name)
          Gets the file based on file name.
 Upload UploadService.getFileByUser(java.lang.String name, java.lang.String userName)
          Gets the file based on user and file name.
 Upload UploadService.getFilesByType(java.lang.String uploadFileType)
          Get the files based on file type.
 Upload UploadService.getFilesByType(java.lang.String uploadFileType, java.lang.Integer max, java.lang.Integer offset)
          Get the files based on file type by Paging.
 Upload UploadService.uploadFile(java.lang.String name, java.io.InputStream fileStream, java.lang.String fileType, java.lang.String description)
          Uploads file on the cloud.
 Upload UploadService.uploadFileForUser(java.lang.String name, java.lang.String userName, java.io.InputStream fileInputStream, java.lang.String fileType, java.lang.String description)
          Uploads file on the cloud for given user.