Uses of Class
net.netheos.pcsapi.models.CPath

Packages that use CPath
net.netheos.pcsapi.exceptions   
net.netheos.pcsapi.models   
net.netheos.pcsapi.providers.cloudme   
net.netheos.pcsapi.providers.dropbox   
net.netheos.pcsapi.providers.googledrive   
net.netheos.pcsapi.providers.hubic   
net.netheos.pcsapi.request   
net.netheos.pcsapi.storage   
net.netheos.pcsapi.utils   
 

Uses of CPath in net.netheos.pcsapi.exceptions
 

Methods in net.netheos.pcsapi.exceptions that return CPath
 CPath CInvalidFileTypeException.getPath()
           
 CPath CFileNotFoundException.getPath()
          Get the file that has not been found
 

Constructors in net.netheos.pcsapi.exceptions with parameters of type CPath
CFileNotFoundException(String message, CPath path)
           
CInvalidFileTypeException(CPath cpath, boolean blobExpected)
           
CInvalidFileTypeException(String message, CPath cpath, boolean blobExpected)
           
 

Uses of CPath in net.netheos.pcsapi.models
 

Fields in net.netheos.pcsapi.models declared as CPath
static CPath CPath.ROOT
           
 

Methods in net.netheos.pcsapi.models that return CPath
 CPath CPath.add(String baseName)
          Adds a component to the current path
 CPath CPath.getParent()
           
 CPath CDownloadRequest.getPath()
          Get the file path to download
 CPath CUploadRequest.getPath()
          Get the destination file path where the data will be uploaded
 CPath CFile.getPath()
          Get the file path
 

Methods in net.netheos.pcsapi.models that return types with arguments of type CPath
 Collection<CPath> CFolderContent.getPaths()
          Get the files paths stored in the folder
 

Methods in net.netheos.pcsapi.models with parameters of type CPath
 boolean CFolderContent.containsPath(CPath path)
          Indicates if the folder contains the given path
 CFile CFolderContent.getFile(CPath path)
          Get a file by its path
 

Constructors in net.netheos.pcsapi.models with parameters of type CPath
CBlob(CPath path)
           
CBlob(CPath path, long length, String contentType)
           
CBlob(CPath path, long length, String contentType, Date modificationDate, CMetadata metadata)
           
CDownloadRequest(CPath path, ByteSink byteSink)
           
CFile(CPath path)
           
CFolder(CPath path)
           
CFolder(CPath path, Date modifiationDate, CMetadata metadata)
           
CUploadRequest(CPath path, ByteSource byteSource)
           
 

Constructor parameters in net.netheos.pcsapi.models with type arguments of type CPath
CFolderContent(Map<CPath,CFile> content)
           
 

Uses of CPath in net.netheos.pcsapi.providers.cloudme
 

Methods in net.netheos.pcsapi.providers.cloudme that return CPath
 CPath CMFolder.getCPath()
          Gets the CPath corresponding to this folder
 CPath CMBlob.getPath()
          Gets CPath of a CloudMe Blob which is its parent folder's CPath + its base name
 

Methods in net.netheos.pcsapi.providers.cloudme with parameters of type CPath
 boolean CloudMe.createFolder(CPath cpath)
           
 boolean CloudMe.delete(CPath cpath)
           
 CFile CloudMe.getFile(CPath cpath)
           
 CMFolder CMFolder.getFolder(CPath path)
          Gets the CloudMe folder corresponding to a given CPath Returns null if the folder does not exist
 CFolderContent CloudMe.listFolder(CPath cpath)
          There are 3 main steps to list a folder: - generate the tree view of CloudMe storage - list all the subfolders - list all the blobs
 

Uses of CPath in net.netheos.pcsapi.providers.dropbox
 

Methods in net.netheos.pcsapi.providers.dropbox with parameters of type CPath
 boolean Dropbox.createFolder(CPath cpath)
           
 boolean Dropbox.delete(CPath cpath)
           
 CFile Dropbox.getFile(CPath cpath)
           
 CFolderContent Dropbox.listFolder(CPath cpath)
           
 

Uses of CPath in net.netheos.pcsapi.providers.googledrive
 

Methods in net.netheos.pcsapi.providers.googledrive with parameters of type CPath
 boolean GoogleDrive.createFolder(CPath path)
           
 boolean GoogleDrive.delete(CPath path)
           
 CFile GoogleDrive.getFile(CPath path)
           
 CFolderContent GoogleDrive.listFolder(CPath path)
           
 

Uses of CPath in net.netheos.pcsapi.providers.hubic
 

Methods in net.netheos.pcsapi.providers.hubic with parameters of type CPath
 boolean Hubic.createFolder(CPath path)
           
 boolean Hubic.delete(CPath path)
           
 CFile Hubic.getFile(CPath path)
           
 CFolderContent Hubic.listFolder(CPath path)
           
 

Uses of CPath in net.netheos.pcsapi.request
 

Methods in net.netheos.pcsapi.request that return CPath
 CPath HttpRequestor.getPath()
           
 CPath Requestor.getPath()
          Get the file path used in the request
 

Methods in net.netheos.pcsapi.request with parameters of type CPath
 void ResponseValidator.validateResponse(T response, CPath path)
          Validate the response
 

Constructors in net.netheos.pcsapi.request with parameters of type CPath
HttpRequestor(org.apache.http.client.methods.HttpUriRequest request, CPath path, HttpExecutor executor)
          Create a new requestor
 

Uses of CPath in net.netheos.pcsapi.storage
 

Methods in net.netheos.pcsapi.storage with parameters of type CPath
 boolean IStorageProvider.createFolder(CPath path)
          Create a folder at given path, with intermediate folders if needed.
 boolean IStorageProvider.delete(CPath path)
          Deletes blob, or recursively delete folder at given path.
 CFile IStorageProvider.getFile(CPath path)
          Return detailed file information at given path, or None if no object exists at this path
 CFolderContent IStorageProvider.listFolder(CPath path)
          Return a map of files present in given CPath. keys of map are CPath objects, values are CFile objects (CFolder or CBlob).
 

Uses of CPath in net.netheos.pcsapi.utils
 

Methods in net.netheos.pcsapi.utils with parameters of type CPath
static CStorageException PcsUtils.buildCStorageException(CResponse response, String message, CPath path)
          Some common code between providers.
 



Copyright © 2014. All Rights Reserved.