Beispiel #1
0
 public EsclJobCreator(IEsclClient esclClient,
                       string host,
                       EsclScanRequestGenerator scanRequestGenerator)
 {
     this.esclClient           = esclClient;
     this.host                 = host;
     this.endpoint             = string.Format(NEW_JOB_URI_PATTERN, host);
     this.scanRequestGenerator = scanRequestGenerator;
 }
Beispiel #2
0
 public EsclFileFetcher(IEsclClient esclClient, string host, string jobUri)
 {
     this.esclClient = esclClient;
     this.endpoint   = string.Format(RESULT_URI_PATTERN, host, jobUri);
 }
Beispiel #3
0
 public StatusProvider(IEsclClient esclClient, string host)
 {
     this.esclClient = esclClient;
     this.endpoint   = String.Format(STATUS_URI_PATTERN, host);
 }
 public CapabilitiesProvider(IEsclClient esclClient, string host)
 {
     this.esclClient = esclClient;
     this.endpoint   = String.Format(CAPABILITIES_URI_PATTERN, host);
 }
Beispiel #5
0
 public JobStatusChecker(IEsclClient esclClient, string host, string jobUri)
 {
     this.esclClient = esclClient;
     this.endpoint   = string.Format(STATUS_URI_PATTERN, host);
     this.Uri        = jobUri;
 }