Class ZohoClient

java.lang.Object
com.logicaldoc.zoho.ZohoClient

public class ZohoClient extends Object
Facade for Zoho Docs.
Since:
8.7
Author:
Marco Meschieri - LogicalDOC
  • Field Details

    • CALLBACK_PATH

      public static final String CALLBACK_PATH
      Callback URI that Zoho will redirect to after successful authentication
      See Also:
  • Method Details

    • get

      public static ZohoClient get(long userId)
    • saveSettings

      public void saveSettings() throws ZohoException
      Throws:
      ZohoException
    • loadSettings

      public void loadSettings() throws ZohoException
      Throws:
      ZohoException
    • buildAuthorizationUrl

      public String buildAuthorizationUrl() throws ZohoException
      Throws:
      ZohoException
    • obtainAccessToken

      public String obtainAccessToken(String grantCode) throws ZohoException
      Throws:
      ZohoException
    • listFiles

      public List<com.logicaldoc.util.Pair<String,String>> listFiles(String folderId) throws ZohoException
      Lists the files inside a given folder
      Parameters:
      folderId - identifier of the folder or null for the root
      Returns:
      List of pairs docId-fileName
      Throws:
      ZohoException - A generic exception communicating with Zoho
    • listFolders

      public List<com.logicaldoc.util.Pair<String,String>> listFolders(String parentId) throws ZohoException
      Throws:
      ZohoException
    • createFolder

      public com.logicaldoc.util.Pair<String,String> createFolder(String parentId, String name) throws ZohoException
      Throws:
      ZohoException
    • delete

      public void delete(String docId) throws ZohoException
      Throws:
      ZohoException
    • createDocument

      public com.logicaldoc.util.Pair<String,String> createDocument(String folderId, String filename) throws ZohoException
      Creates a new document in Zoho.
      Parameters:
      folderId - The parent folder ID
      filename - The file name
      Returns:
      the ID of the new document and the URL to open
      Throws:
      ZohoException - error in the Zoho server
    • download

      public void download(String docId, File out) throws ZohoException
      Throws:
      ZohoException
    • upload

      public com.logicaldoc.util.Pair<String,String> upload(String filename, File file, String folderId) throws ZohoException
      Upload an existing file to the Zoho
      Parameters:
      filename - name of the file to upload
      file - the file to upload
      folderId - identifier of the target folder
      Returns:
      a pair document ID - document name
      Throws:
      ZohoException - An error communicating with Zoho
    • upload

      public com.logicaldoc.util.Pair<String,String> upload(String filename, InputStream content, String folderId) throws ZohoException
      Upload an existing file to the Zoho
      Parameters:
      filename - name of the file to upload
      content - the file's content
      folderId - identifier of the target folder
      Returns:
      a pair document ID - document name
      Throws:
      ZohoException - An error communicating with Zoho
    • getDocument

      public com.logicaldoc.util.Pair<String,String> getDocument(String docId) throws ZohoException
      Gets the details of a document stored in Zoho
      Parameters:
      docId - identifier of the document in Zoho
      Returns:
      a pair document ID - document name
      Throws:
      ZohoException - An error communicating with Zoho
    • getUserId

      public long getUserId()
    • getClientId

      public String getClientId()
    • setClientId

      public void setClientId(String clientId)
    • getClientSecret

      public String getClientSecret()
    • setClientSecret

      public void setClientSecret(String clientSecret)
    • getAccessToken

      public String getAccessToken()