Class PingOneWalletClient.Builder

java.lang.Object
com.pingidentity.sdk.pingonewallet.client.PingOneWalletClient.Builder
Enclosing class:
PingOneWalletClient

public static class PingOneWalletClient.Builder extends Object
  • Constructor Details

    • Builder

      public Builder(boolean allowOtherRegions, PingOneRegion... pingOneRegion)
      Initialize Builder for PingOne region(s). SDK will register the wallet in the region(s) passed here at the time of initialization. If allowOtherRegions is set to true, wallet will automatically register to the new region at the time of the request. If allowOtherRegions is set to false, wallet will throw error when trying to perform an action in unsupported regions.
      Parameters:
      allowOtherRegions - : PingOneRegion for wallet initialization
      pingOneRegion - : boolean indicating if wallet can be registered in other regions
  • Method Details

    • setStorageManager

      public PingOneWalletClient.Builder setStorageManager(StorageManagerContract storageManagerContract)
      Optional: Pass the custom implementation of StorageManagerContract interface. SDK already has a default implementation of StorageManagerContract that utilizes the crypto keys from secure enclave. Override the implementation only if needed.
      Parameters:
      storageManagerContract - : Custom implementation of StorageManagerContract
      Returns:
      PingOneWalletClient.Builder
    • setStorageErrorHandler

      public PingOneWalletClient.Builder setStorageErrorHandler(StorageErrorHandler storageErrorHandler)
      Optional: Pass the error handler to handle errors thrown when initializing storage
      Parameters:
      storageErrorHandler - : StorageErrorHandler
      Returns:
      PingOneWalletClient.Builder
      See Also:
    • setWalletCallbackHandler

      public PingOneWalletClient.Builder setWalletCallbackHandler(WalletCallbackHandler walletCallbackHandler)
      Required: Pass the callback handler to handle different Wallet actions
      Parameters:
      walletCallbackHandler - : Implementation of WalletCallbackHandler
      Returns:
      PingOneWalletClient.Builder
      See Also:
    • setPushToken

      public PingOneWalletClient.Builder setPushToken(String pushToken)
      Optional: Pass the push token for the application if available. You can set the value later using PingOneWalletClient as well.
      Parameters:
      pushToken - : Firebase token for the application
      Returns:
      PingOneWalletClient.Builder
    • build

      public void build(androidx.fragment.app.FragmentActivity fragmentActivity, androidx.core.util.Consumer<PingOneWalletClient> onResult, androidx.core.util.Consumer<Throwable> onError)
      Call to initialize PingOneWalletClient after passing all the parameters.
      Parameters:
      fragmentActivity - : context
      onResult - : called if initialization is successful
      onError - : called if initialization fails