Interface BarcodeService

  • All Superinterfaces:
    com.google.gwt.user.client.rpc.RemoteService

    @RemoteServiceRelativePath("barcode")
    public interface BarcodeService
    extends com.google.gwt.user.client.rpc.RemoteService
    The client side stub for the Barcode Engine Service.
    Since:
    6.1
    Author:
    Marco Meschieri - LogicalDOC
    • Method Detail

      • rescheduleAll

        void rescheduleAll()
                    throws ServerException
        Reschedule all documents for processing
        Throws:
        ServerException - an error happened in the server application
      • markUnprocessable

        void markUnprocessable​(long[] ids)
                        throws ServerException
        Marks a set of documents as not processable
        Parameters:
        ids - document identifiers
        Throws:
        ServerException - an error happened in the server application
      • loadPatterns

        GUIBarcodePattern[] loadPatterns​(Long templateId)
                                  throws ServerException
        Loads the patterns configured for a given template
        Parameters:
        templateId - identifier of the template
        Returns:
        the patterns assigned to the given template
        Throws:
        ServerException - an error happened in the server application
      • savePatterns

        void savePatterns​(GUIBarcodePattern[] patterns,
                          Long templateId)
                   throws ServerException
        Saves the patterns for the given template ordered by position
        Parameters:
        patterns - the recognition patterns
        templateId - identifier of the template
        Throws:
        ServerException - an error happened in the server application