Home
last modified time | relevance | path

Searched refs:ManageSubscriptionResponse (Results 1 – 3 of 3) sorted by relevance

/frameworks/libs/service_entitlement/tests/src/com/android/libraries/entitlement/
DTs43OperationTest.java43 …port com.android.libraries.entitlement.odsa.ManageSubscriptionOperation.ManageSubscriptionResponse;
339 ManageSubscriptionResponse response = mTs43Operation.manageSubscription(request); in testManageSubscription_continueToWebsheet()
343 ManageSubscriptionResponse.SUBSCRIPTION_RESULT_CONTINUE_TO_WEBSHEET); in testManageSubscription_continueToWebsheet()
360 ManageSubscriptionResponse response = mTs43Operation.manageSubscription(request); in testManageSubscription_downloadProfile()
364 ManageSubscriptionResponse.SUBSCRIPTION_RESULT_DOWNLOAD_PROFILE); in testManageSubscription_downloadProfile()
383 ManageSubscriptionResponse response = mTs43Operation.manageSubscription(request); in testManageSubscription_invalidUserInput()
387 ManageSubscriptionResponse.SUBSCRIPTION_RESULT_REQUIRES_USER_INPUT); in testManageSubscription_invalidUserInput()
/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/
DTs43Operation.java44 …port com.android.libraries.entitlement.odsa.ManageSubscriptionOperation.ManageSubscriptionResponse;
356 public ManageSubscriptionResponse manageSubscription( in manageSubscription()
432 ManageSubscriptionResponse.Builder responseBuilder = ManageSubscriptionResponse.builder(); in manageSubscription()
444 int subscriptionResult = ManageSubscriptionResponse.SUBSCRIPTION_RESULT_UNKNOWN; in manageSubscription()
456 ManageSubscriptionResponse.SUBSCRIPTION_RESULT_CONTINUE_TO_WEBSHEET; in manageSubscription()
502 ManageSubscriptionResponse.SUBSCRIPTION_RESULT_DOWNLOAD_PROFILE; in manageSubscription()
514 subscriptionResult = ManageSubscriptionResponse.SUBSCRIPTION_RESULT_DONE; in manageSubscription()
518 ManageSubscriptionResponse.SUBSCRIPTION_RESULT_DELAYED_DOWNLOAD; in manageSubscription()
521 subscriptionResult = ManageSubscriptionResponse.SUBSCRIPTION_RESULT_DISMISS; in manageSubscription()
525 ManageSubscriptionResponse.SUBSCRIPTION_RESULT_DELETE_PROFILE_IN_USE; in manageSubscription()
[all …]
/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/odsa/
DManageSubscriptionOperation.java597 public abstract static class ManageSubscriptionResponse extends OdsaResponse { class in ManageSubscriptionOperation
784 public abstract ManageSubscriptionResponse build(); in build()