![]() |
Orchestration SDK 5.10.1
|
#include <OrchestratorBuilder.h>
Inherits NSObject.
Instance Methods | |
(id< OrchestrationProtocol > _Nullable) | - buildWithError: |
(OrchestratorBuilder *) | - setDigipassSalt: |
(OrchestratorBuilder *) | - setStorageSalt: |
(OrchestratorBuilder *) | - setAccessGroup: |
(OrchestratorBuilder *) | - setDefaultDomain: |
(OrchestratorBuilder *) | - setCDDCParams: |
(OrchestratorBuilder *) | - setErrorDelegate: |
(OrchestratorBuilder *) | - setWarningDelegate: |
Simple builder for the OrchestrationProtocol
object.
- (id< OrchestrationProtocol > _Nullable) buildWithError: | (NSError **) | error |
build an OrchestrationProtocol
object with the configured OrchestratorBuilder
instance.
error | a NSError raised if there is an error during the process. |
- (OrchestratorBuilder *) setAccessGroup: | (id< OrchestrationAccessGroup >) | accessGroup |
Set the access group that will be use to bind the device and return the modified OrchestratorBuilder
.
accessGroup | OrchestrationAccessGroup |
OrchestratorBuilder
- (OrchestratorBuilder *) setCDDCParams: | (CDDCParams *) | cddcParams |
Set the CDDC parameters. These parameters are used during CDDDC process and return the modified OrchestratorBuilder
.
cddcParams | CDDC parameters used to configure CDDC process |
OrchestratorBuilder
- (OrchestratorBuilder *) setDefaultDomain: | (NSString *) | defaultDomain |
Sets the domain corresponding to the current user's account.
defaultDomain | the unique identifier of the domain related to the user's account (e.g. "VASCO") |
- (OrchestratorBuilder *) setDigipassSalt: | (NSString *) | digipassSalt |
Set the salt that is used to protect the secret of the DIGIPASS and return the modified OrchestratorBuilder
.
digipassSalt | digipass salt |
OrchestratorBuilder
- (OrchestratorBuilder *) setErrorDelegate: | (id< OrchestrationErrorDelegate >) | orchestrationErrorDelegate |
Set the delegate that will be used if an error occurs and return the modified OrchestratorBuilder
.
orchestrationErrorDelegate | error delegate |
OrchestratorBuilder
- (OrchestratorBuilder *) setStorageSalt: | (NSString *) | storageSalt |
Set the salt that is used to protect the storage and return the modified OrchestratorBuilder
.
storageSalt | storage salt |
OrchestratorBuilder
- (OrchestratorBuilder *) setWarningDelegate: | (id< OrchestrationWarningDelegate >) | orchestrationWarningDelegate |
Set the delegate that will be used if a warning occurs. The method then returns the modified OrchestratorBuilder
.
orchestrationErrorDelegate | error delegate |
OrchestratorBuilder