public CamundaEngineClient(string restUrl, string userName, string password)
 {
     this.RestUrl      = restUrl;
     this.RestUsername = userName;
     this.RestPassword = password;
     helper            = new CamundaClientHelper(this.RestUrl, this.RestUsername, this.RestPassword);
 }
 public CamundaEngineClient(Uri restUrl, string userName, string password)
 {
     _camundaClientHelper = new CamundaClientHelper(restUrl, userName, password);
 }
 public CamundaEngineClient()
 {
     this.RestUrl = DEFAULT_URL;
     helper       = new CamundaClientHelper(this.RestUrl, this.RestUsername, this.RestPassword);
 }
Пример #4
0
 public CamundaEngineClient(AppSettings settings)
 {
     _camundaClientHelper = new CamundaClientHelper(new Uri(settings.CamundaUrl), settings.CamundaUsername, settings.CamundaPassword);
 }