Stay organized with collections
Save and categorize content based on your preferences.
PpsMoParser
class PpsMoParser
Utility class for converting OMA-DM (Open Mobile Alliance's Device Management) PPS-MO (PerProviderSubscription Management Object) XML tree to a PasspointConfiguration
object. Currently this only supports PerProviderSubscription/HomeSP and PerProviderSubscription/Credential subtree for Hotspot 2.0 Release 1 support. For more info, refer to Hotspot 2.0 PPS MO defined in section 9.1 of the Hotspot 2.0 Release 2 Technical Specification. Below is a sample XML string for a Release 1 PPS MO tree: 1.2 PerProviderSubscription urn:wfa:mo:hotspot2dot0perprovidersubscription:1.0 i001 HomeSP FriendlyName Century House FQDN mi6.co.uk RoamingConsortiumOI 112233,445566 Credential Realm shaken.stirred.com UsernamePassword Username james Password Ym9uZDAwNw== EAPMethod EAPType 21 InnerMethod MS-CHAP-V2
Summary
Public methods
parseMoText
static fun parseMoText(xmlString: String!): PasspointConfiguration!
Convert a XML string representation of a PPS MO (PerProviderSubscription Management Object) tree to a PasspointConfiguration
object.
Parameters |
xmlString |
String!: XML string representation of a PPS MO tree |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# PpsMoParser\n\nAdded in [API level 26](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nPpsMoParser\n===========\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/net/wifi/hotspot2/omadm/PpsMoParser \"View this page in Java\") \n\n```\nclass PpsMoParser\n```\n\n|---|--------------------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||\n| ↳ | [android.net.wifi.hotspot2.omadm.PpsMoParser](#) |\n\nUtility class for converting OMA-DM (Open Mobile Alliance's Device Management) PPS-MO (PerProviderSubscription Management Object) XML tree to a [PasspointConfiguration](../PasspointConfiguration.html#) object. Currently this only supports PerProviderSubscription/HomeSP and PerProviderSubscription/Credential subtree for Hotspot 2.0 Release 1 support. For more info, refer to Hotspot 2.0 PPS MO defined in section 9.1 of the Hotspot 2.0 Release 2 Technical Specification. Below is a sample XML string for a Release 1 PPS MO tree: 1.2 PerProviderSubscription urn:wfa:mo:hotspot2dot0perprovidersubscription:1.0 i001 HomeSP FriendlyName Century House FQDN mi6.co.uk RoamingConsortiumOI 112233,445566 Credential Realm shaken.stirred.com UsernamePassword Username james Password Ym9uZDAwNw== EAPMethod EAPType 21 InnerMethod MS-CHAP-V2\n\nSummary\n-------\n\n| Public methods ||\n|-------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| static [PasspointConfiguration](../PasspointConfiguration.html#)! | [parseMoText](#parseMoText(kotlin.String))`(`xmlString:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`)` Convert a XML string representation of a PPS MO (PerProviderSubscription Management Object) tree to a [PasspointConfiguration](../PasspointConfiguration.html#) object. |\n\nPublic methods\n--------------\n\n### parseMoText\n\nAdded in [API level 26](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nstatic fun parseMoText(xmlString: String!): PasspointConfiguration!\n```\n\nConvert a XML string representation of a PPS MO (PerProviderSubscription Management Object) tree to a [PasspointConfiguration](../PasspointConfiguration.html#) object.\n\n| Parameters ||\n|-------------|-------------------------------------------------------------------------------------------------------------------------------|\n| `xmlString` | [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!: XML string representation of a PPS MO tree |\n\n| Return ||\n|------------------------------------------------------------|-------------------------------------------------------------------|\n| [PasspointConfiguration](../PasspointConfiguration.html#)! | [PasspointConfiguration](../PasspointConfiguration.html#) or null |"]]