• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.hotspot2.osu;
2 
3 import com.android.hotspot2.omadm.OMAException;
4 import com.android.hotspot2.omadm.XMLNode;
5 
6 	/*
7 	<xsd:element name="sppExchangeComplete">
8 		<xsd:annotation>
9 			<xsd:documentation>SOAP method used by SPP server to end session.</xsd:documentation>
10 		</xsd:annotation>
11 		<xsd:complexType>
12 			<xsd:sequence>
13 				<xsd:element ref="sppError" minOccurs="0"/>
14 				<xsd:any namespace="##other" maxOccurs="unbounded" minOccurs="0"/>
15 			</xsd:sequence>
16 			<xsd:attribute ref="sppVersion" use="required"/>
17 			<xsd:attribute ref="sppStatus" use="required"/>
18 			<xsd:attribute ref="sessionID" use="required"/>
19 			<xsd:anyAttribute namespace="##other"/>
20 		</xsd:complexType>
21 	</xsd:element>
22 	 */
23 
24 public class ExchangeCompleteResponse extends OSUResponse {
ExchangeCompleteResponse(XMLNode root)25     public ExchangeCompleteResponse(XMLNode root) throws OMAException {
26         super(root, OSUMessageType.ExchangeComplete);
27     }
28 }
29