diff options
author | 2018-10-15 13:15:58 +0000 | |
---|---|---|
committer | 2018-10-15 13:15:58 +0000 | |
commit | a68e3ccd83ef68645d64676df7c58a98f43dea9d (patch) | |
tree | 6ddb55421d5eadaaa83a0c8a40c1f56649c4119b | |
parent | 6f6e67bcce3438e9fb11fa8b83c20bdfc08f1e12 (diff) | |
parent | 8bdec9e82370b13225f0ab5ec87cca3018f7702e (diff) |
Merge "passpoint-r2: add the status for starting third soap exchange"
-rw-r--r-- | wifi/java/android/net/wifi/hotspot2/ProvisioningCallback.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/wifi/java/android/net/wifi/hotspot2/ProvisioningCallback.java b/wifi/java/android/net/wifi/hotspot2/ProvisioningCallback.java index b4dfac6c01c7..6076175ce9d1 100644 --- a/wifi/java/android/net/wifi/hotspot2/ProvisioningCallback.java +++ b/wifi/java/android/net/wifi/hotspot2/ProvisioningCallback.java @@ -102,6 +102,12 @@ public abstract class ProvisioningCallback { public static final int OSU_FAILURE_NO_OSU_ACTIVITY_FOUND = 14; /** + * The reason code for provisioning failure when the status of a SOAP message is not the + * expected message status. + */ + public static final int OSU_FAILURE_UNEXPECTED_SOAP_MESSAGE_STATUS = 15; + + /** * The status code for provisioning flow to indicate connecting to OSU AP */ public static final int OSU_STATUS_AP_CONNECTING = 1; @@ -147,6 +153,11 @@ public abstract class ProvisioningCallback { public static final int OSU_STATUS_SECOND_SOAP_EXCHANGE = 9; /** + * The status code for provisioning flow to indicate starting the third SOAP exchange. + */ + public static final int OSU_STATUS_THIRD_SOAP_EXCHANGE = 10; + + /** * Provisioning status for OSU failure * * @param status indicates error condition |