Home
last modified time | relevance | path

Searched refs:BUNDLE_KEY_REQUEST_JSON (Results 1 – 14 of 14) sorted by relevance

/credentials/credentials/src/main/java/androidx/credentials/
DDigitalCredential.kt58 internal const val BUNDLE_KEY_REQUEST_JSON = "androidx.credentials.BUNDLE_KEY_REQUEST_JSON" constant
63 val credentialJson = data.getString(BUNDLE_KEY_REQUEST_JSON) in createFrom()
73 bundle.putString(BUNDLE_KEY_REQUEST_JSON, responseJson) in toBundle()
DGetDigitalCredentialOption.kt85 internal const val BUNDLE_KEY_REQUEST_JSON = "androidx.credentials.BUNDLE_KEY_REQUEST_JSON" constant
90 bundle.putString(BUNDLE_KEY_REQUEST_JSON, requestJson) in toBundle()
102 val requestJson = requestData.getString(BUNDLE_KEY_REQUEST_JSON)!! in createFrom()
DGetPublicKeyCredentialOption.kt94 internal const val BUNDLE_KEY_REQUEST_JSON = "androidx.credentials.BUNDLE_KEY_REQUEST_JSON" constant
108 bundle.putString(BUNDLE_KEY_REQUEST_JSON, requestJson) in toRequestDataBundle()
122 val requestJson = data.getString(BUNDLE_KEY_REQUEST_JSON) in createFrom()
DCreatePublicKeyCredentialRequest.kt207 internal const val BUNDLE_KEY_REQUEST_JSON = "androidx.credentials.BUNDLE_KEY_REQUEST_JSON" constant
245 bundle.putString(BUNDLE_KEY_REQUEST_JSON, requestJson) in toCredentialDataBundle()
260 bundle.putString(BUNDLE_KEY_REQUEST_JSON, requestJson) in toCandidateDataBundle()
273 val requestJson = data.getString(BUNDLE_KEY_REQUEST_JSON)!! in createFrom()
/credentials/credentials/src/main/java/androidx/credentials/provider/
DBeginCreatePublicKeyCredentialRequest.kt25 import androidx.credentials.CreatePublicKeyCredentialRequest.Companion.BUNDLE_KEY_REQUEST_JSON
77 candidateQueryData.putString(BUNDLE_KEY_REQUEST_JSON, requestJson) in initiateBundle()
96 val requestJson = data.getString(BUNDLE_KEY_REQUEST_JSON) in createFrom()
DBeginGetPublicKeyCredentialOption.kt65 data.getString(GetPublicKeyCredentialOption.BUNDLE_KEY_REQUEST_JSON) in createFrom()
/credentials/credentials/src/androidTest/java/androidx/credentials/provider/
DBeginGetPublicKeyCredentialOptionTest.kt105 GetPublicKeyCredentialOption.BUNDLE_KEY_REQUEST_JSON, in getter_frameworkProperties_success()
129 bundle.putString(GetPublicKeyCredentialOption.BUNDLE_KEY_REQUEST_JSON, requestJsonExpected) in createFrom_success()
148 bundle.putString(GetPublicKeyCredentialOption.BUNDLE_KEY_REQUEST_JSON, requestJsonExpected) in createFromEntrySlice_success()
DBeginGetPublicKeyCredentialOptionJavaTest.java19 import static androidx.credentials.GetPublicKeyCredentialOption.BUNDLE_KEY_REQUEST_JSON;
120 expectedData.putString(BUNDLE_KEY_REQUEST_JSON, requestJsonExpected); in getter_frameworkProperties_success()
DBeginCreatePublicKeyCredentialRequestTest.kt86 bundle.putString(BUNDLE_KEY_REQUEST_JSON, "{\"hi\":{\"there\":{\"lol\":\"Value\"}}}") in constructor_success_createFrom()
161 internal const val BUNDLE_KEY_REQUEST_JSON = "androidx.credentials.BUNDLE_KEY_REQUEST_JSON" constant
DBeginCreatePublicKeyCredentialRequestJavaTest.java41 private static final String BUNDLE_KEY_REQUEST_JSON = field in BeginCreatePublicKeyCredentialRequestJavaTest
129 bundle.putString(BUNDLE_KEY_REQUEST_JSON, "{\"hi\":{\"there\":{\"lol\":\"Value\"}}}"); in constructor_success_createFrom()
/credentials/credentials/src/androidTest/java/androidx/credentials/
DGetPublicKeyCredentialOptionJavaTest.java21 import static androidx.credentials.GetPublicKeyCredentialOption.BUNDLE_KEY_REQUEST_JSON;
100 expectedData.putString(BUNDLE_KEY_REQUEST_JSON, requestJsonExpected); in getter_frameworkProperties_success()
DCreatePublicKeyCredentialRequestJavaTest.java21 import static androidx.credentials.CreatePublicKeyCredentialRequest.BUNDLE_KEY_REQUEST_JSON;
171 BUNDLE_KEY_REQUEST_JSON, requestJsonExpected); in getter_frameworkProperties_success()
DCreatePublicKeyCredentialRequestTest.kt24 import androidx.credentials.CreatePublicKeyCredentialRequest.Companion.BUNDLE_KEY_REQUEST_JSON
157 expectedCandidateQueryData.putString(BUNDLE_KEY_REQUEST_JSON, requestJsonExpected) in getter_frameworkProperties_success()
DGetPublicKeyCredentialOptionTest.kt81 GetPublicKeyCredentialOption.BUNDLE_KEY_REQUEST_JSON, in getter_frameworkProperties_success()