<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright 2011 by Graz University of Technology, Austria
  MOCCA has been developed by the E-Government Innovation Center EGIZ, a joint
  initiative of the Federal Chancellery Austria and Graz University of Technology.

  Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
  the European Commission - subsequent versions of the EUPL (the "Licence");
  You may not use this work except in compliance with the Licence.
  You may obtain a copy of the Licence at:
  http://www.osor.eu/eupl/

  Unless required by applicable law or agreed to in writing, software
  distributed under the Licence is distributed on an "AS IS" basis,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the Licence for the specific language governing permissions and
  limitations under the Licence.

  This product combines work with different licenses. See the "NOTICE" text
  file for details on the various modules and licenses.
  The "NOTICE" text file is part of the distribution. Any derivative works
  that you distribute must include a readable copy of the "NOTICE" text file.
-->
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.egiz.gv.at/stal"
    xmlns:tns="http://www.egiz.gv.at/stal"
    elementFormDefault="qualified">
  <element name="SessionId" type="string"/>
  <element name="GetNextRequest" type="tns:GetNextRequestType"/>
  <element name="GetNextRequestResponse" type="tns:GetNextRequestResponseType"/>
  <element name="GetHashDataInput" type="tns:GetHashDataInputType"/>
  <element name="GetHashDataInputResponse" type="tns:GetHashDataInputResponseType"/>
  <element name="GetHashDataInputFault" type="tns:GetHashDataInputFaultType"/>
  <complexType name="GetNextRequestType">
        <!-- abstract Request/Response type not supported by JAX-WS 2.0 (jdk < 1.6.0_04)  
        <sequence>
            <element name="Response" type="tns:ResponseType"  minOccurs="0"  maxOccurs="unbounded"/>
        </sequence-->
    <choice maxOccurs="unbounded">
      <element name="InfoboxReadResponse" type="tns:InfoboxReadResponseType"/>
      <element name="SignResponse" type="tns:SignResponseType"/>
      <element name="ErrorResponse" type="tns:ErrorResponseType"/>
      <element name="StatusResponse" type="tns:StatusResponseType"/>
    </choice>
    <attribute name="SessionId" type="string"/>
  </complexType>
  <complexType name="ResponseType" abstract="true" />
  <complexType name="InfoboxReadResponseType">
    <complexContent>
      <extension base="tns:ResponseType">
        <sequence>
          <element name="InfoboxValue" type="base64Binary"/>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="SignResponseType">
    <complexContent>
      <extension base="tns:ResponseType">
        <sequence>
          <element name="SignatureValue" type="base64Binary"/>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="ErrorResponseType">
    <complexContent>
      <extension base="tns:ResponseType">
        <sequence>
          <element name="ErrorCode" type="int"/>
          <element name="ErrorMessage" type="string"/>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="StatusResponseType">
    <complexContent>
      <extension base="tns:ResponseType">
        <attribute name="cardReady" type="boolean" />
      </extension>
    </complexContent>
  </complexType>
  <complexType name="GetNextRequestResponseType">
        <!-- abstract Request/Response type not supported by JAX-WS 2.0 (jdk < 1.6.0_04) 
        <sequence>
            <element name="Request" type="tns:RequestType" minOccurs="0" maxOccurs="unbounded"/>
        </sequence-->
    <choice maxOccurs="unbounded">
      <element name="InfoboxReadRequest" type="tns:InfoboxReadRequestType"/>
      <element name="SignRequest" type="tns:SignRequestType"/>
      <element name="QuitRequest" type="tns:QuitRequestType"/>
      <element name="StatusRequest" type="tns:StatusRequestType"/>
    </choice>
    <attribute name="SessionId" type="string"/>
  </complexType>
  <complexType name="RequestType" abstract="true"/>
  <complexType name="InfoboxReadRequestType">
    <complexContent>
      <extension base="tns:RequestType">
        <sequence>
          <element name="InfoboxIdentifier">
            <simpleType>
              <restriction base="string">
                <enumeration value="Certificates"/>
                <enumeration value="IdentityLink"/>
                <enumeration value="Mandates"/>
              </restriction>
            </simpleType>
          </element>
          <element name="DomainIdentifier" type="anyURI" minOccurs="0"/>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="SignRequestType">
    <complexContent>
      <extension base="tns:RequestType">
        <sequence>
          <element name="KeyIdentifier">
            <simpleType>
              <restriction base="string">
                <enumeration value="SecureSignatureKeypair"/>
                <enumeration value="CertifiedKeypair"/>
              </restriction>
            </simpleType>
          </element>
          <element name="SignedInfo" type="base64Binary"/>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <complexType name="QuitRequestType">
    <complexContent>
      <extension base="tns:RequestType"/>
    </complexContent>
  </complexType>
  <complexType name="StatusRequestType">
    <complexContent>
      <extension base="tns:RequestType"/>
    </complexContent>
  </complexType>
  <complexType name="GetHashDataInputType">
    <sequence>
      <element name="Reference" maxOccurs="unbounded">
        <complexType>
          <attribute name="ID" type="string"/>
        </complexType>
      </element>
    </sequence>
    <attribute name="SessionId" type="string"/>
  </complexType>
  <complexType name="GetHashDataInputResponseType">
    <sequence>
      <element name="Reference" maxOccurs="unbounded">
        <complexType>
          <simpleContent>
            <extension base="base64Binary">
              <attribute name="ID" type="string"/>
              <attribute name="MimeType" type="string" use="optional"/>
              <attribute name="Encoding" type="string" use="optional"/>
              <attribute name="Filename" type="string" use="optional"/>
            </extension>
          </simpleContent>
        </complexType>
      </element>
    </sequence>
    <attribute name="SessionId" type="string"/>
  </complexType>
  <complexType name="GetHashDataInputFaultType">
    <sequence>
      <element name="ErrorCode" type="int"/>
      <element name="ErrorMessage" type="string"/>
    </sequence>
  </complexType>
</schema>