/** * */ package at.gv.egiz.pdfas.framework.sigdevice; /** * A SignatureDevice that can be accessed in a sequential manner. * *

* A sequential device handles all necessary steps in sequence. E.g. all the * data is transformed into a http request and sent to a server. The server * processes the request and answers. The response from the server is then * analyzed and returned. *

* * @author wprinz */ public interface SequentialSignatureDevice extends SignatureDevice { // This is just a concept how it could be realized in future. public void sign(); public void verify(); }