diff options
author | Bonato, Martin <martin.bonato@prime-sign.com> | 2018-02-08 22:19:55 +0100 |
---|---|---|
committer | Bonato, Martin <martin.bonato@prime-sign.com> | 2018-02-08 22:19:55 +0100 |
commit | b9ccb62d35a755efb505d426ce924d5a8fbe937a (patch) | |
tree | 00d17aa7dc660eb0e90ae753e36a623d672fc0e0 /BKUOnline/src/main/wsdl/stal-service.xsd | |
parent | 84794c877062fe0424f357be0e83bdd045d75d52 (diff) | |
download | mocca-b9ccb62d35a755efb505d426ce924d5a8fbe937a.tar.gz mocca-b9ccb62d35a755efb505d426ce924d5a8fbe937a.tar.bz2 mocca-b9ccb62d35a755efb505d426ce924d5a8fbe937a.zip |
BulkSignature implementationfb-bulksignature
Diffstat (limited to 'BKUOnline/src/main/wsdl/stal-service.xsd')
-rw-r--r-- | BKUOnline/src/main/wsdl/stal-service.xsd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/BKUOnline/src/main/wsdl/stal-service.xsd b/BKUOnline/src/main/wsdl/stal-service.xsd index 59cebac6..0f452df9 100644 --- a/BKUOnline/src/main/wsdl/stal-service.xsd +++ b/BKUOnline/src/main/wsdl/stal-service.xsd @@ -47,6 +47,7 @@ <choice maxOccurs="unbounded"> <element name="InfoboxReadResponse" type="tns:InfoboxReadResponseType"/> <element name="SignResponse" type="tns:SignResponseType"/> + <element name="BulkSignResponse" type="tns:BulkSignResponseType"/> <element name="ErrorResponse" type="tns:ErrorResponseType"/> <element name="StatusResponse" type="tns:StatusResponseType"/> <element ref="tns:OtherResponse"/> @@ -99,6 +100,7 @@ <choice maxOccurs="unbounded"> <element name="InfoboxReadRequest" type="tns:InfoboxReadRequestType"/> <element name="SignRequest" type="tns:SignRequestType"/> + <element name="BulkSignRequest" type="tns:BulkSignRequestType"/> <element name="QuitRequest" type="tns:QuitRequestType"/> <element name="StatusRequest" type="tns:StatusRequestType"/> <element ref="tns:OtherRequest"/> @@ -143,6 +145,20 @@ </extension> </complexContent> </complexType> + + <complexType name="BulkSignRequestType"> + <sequence minOccurs="1" maxOccurs="unbounded" > + <element name="SignRequests" type="tns:SignRequestType"/> + </sequence> + </complexType> + + + <complexType name="BulkSignResponseType"> + <sequence minOccurs="1" maxOccurs="unbounded"> + <element name="SignResponses" type="tns:SignResponseType"/> + </sequence> + </complexType> + <complexType name="QuitRequestType"> <complexContent> <extension base="tns:RequestType"/> @@ -158,6 +174,7 @@ <element name="Reference" maxOccurs="unbounded"> <complexType> <attribute name="ID" type="string"/> + <attribute use="optional" name="digest" type="base64Binary"/> </complexType> </element> </sequence> |