Class SoapSignClient

java.lang.Object
com.logicaldoc.webservice.soap.client.SoapClient<SignService>
com.logicaldoc.sign.webservice.soap.client.SoapSignClient
All Implemented Interfaces:
SignService

public class SoapSignClient extends com.logicaldoc.webservice.soap.client.SoapClient<SignService> implements SignService
  • Constructor Details

  • Method Details

    • generateCertificate

      public void generateCertificate(String sid) throws com.logicaldoc.core.security.authentication.AuthenticationException, com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException
      Description copied from interface: SignService
      * Generates a new certificate for the user
      Specified by:
      generateCertificate in interface SignService
      Parameters:
      sid - The session identifier
      Throws:
      com.logicaldoc.core.security.authentication.AuthenticationException - The user has not been authenticated
      com.logicaldoc.webservice.WebserviceException - Error in the webservice
      com.logicaldoc.core.PersistenceException - Error in the data layer
    • sign

      public Long[] sign(String sid, Long[] docIds, String reason) throws com.logicaldoc.core.security.authentication.AuthenticationException, com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException
      Description copied from interface: SignService
      Signs a set of documents
      Specified by:
      sign in interface SignService
      Parameters:
      sid - The session identifier
      docIds - Identifiers of the documents you wants to sign
      reason - Reason for the signature
      Returns:
      The list of the documents that were signed
      Throws:
      com.logicaldoc.core.security.authentication.AuthenticationException - The user has not been authenticated
      com.logicaldoc.webservice.WebserviceException - Error in the webservice
      com.logicaldoc.core.PersistenceException - Error in the data layer
    • markDocumentSigned

      public void markDocumentSigned(String sid, long docId, String reason, String certificate) throws com.logicaldoc.core.security.authentication.AuthenticationException, com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException
      Description copied from interface: SignService
      Marks a document as signed(it does not apply any signature, just marks the document as signed)
      Specified by:
      markDocumentSigned in interface SignService
      Parameters:
      sid - The session identifier
      docId - Identifier of the document
      reason - Reason for the signature
      certificate - Description of the certificate to save in the even
      Throws:
      com.logicaldoc.core.security.authentication.AuthenticationException - The user has not been authenticated
      com.logicaldoc.webservice.WebserviceException - Error in the webservice
      com.logicaldoc.core.PersistenceException - Error in the data layer