Class PingOneWalletClient.Builder
java.lang.Object
com.pingidentity.sdk.pingonewallet.client.PingOneWalletClient.Builder
- Enclosing class:
- PingOneWalletClient
-
Constructor Summary
ConstructorsConstructorDescriptionBuilder
(boolean allowOtherRegions, PingOneRegion... pingOneRegion) Initialize Builder for PingOne region(s). -
Method Summary
Modifier and TypeMethodDescriptionvoid
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.setPushToken
(String pushToken) Optional: Pass the push token for the application if available.setStorageErrorHandler
(StorageErrorHandler storageErrorHandler) Optional: Pass the error handler to handle errors thrown when initializing storagesetStorageManager
(StorageManagerContract storageManagerContract) Optional: Pass the custom implementation of StorageManagerContract interface.setWalletCallbackHandler
(WalletCallbackHandler walletCallbackHandler) Required: Pass the callback handler to handle different Wallet actions
-
Constructor Details
-
Builder
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 initializationpingOneRegion
- : boolean indicating if wallet can be registered in other regions
-
-
Method Details
-
setStorageManager
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
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
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
- : contextonResult
- : called if initialization is successfulonError
- : called if initialization fails
-