19
19
20
20
import com .uber .cadence .BadRequestError ;
21
21
import com .uber .cadence .CancellationAlreadyRequestedError ;
22
+ import com .uber .cadence .ClientVersionNotSupportedError ;
23
+ import com .uber .cadence .CountWorkflowExecutionsRequest ;
24
+ import com .uber .cadence .CountWorkflowExecutionsResponse ;
22
25
import com .uber .cadence .DeprecateDomainRequest ;
23
26
import com .uber .cadence .DescribeDomainRequest ;
24
27
import com .uber .cadence .DescribeDomainResponse ;
29
32
import com .uber .cadence .DomainAlreadyExistsError ;
30
33
import com .uber .cadence .DomainNotActiveError ;
31
34
import com .uber .cadence .EntityNotExistsError ;
35
+ import com .uber .cadence .GetSearchAttributesResponse ;
32
36
import com .uber .cadence .GetWorkflowExecutionHistoryRequest ;
33
37
import com .uber .cadence .GetWorkflowExecutionHistoryResponse ;
34
38
import com .uber .cadence .InternalServiceError ;
39
43
import com .uber .cadence .ListDomainsResponse ;
40
44
import com .uber .cadence .ListOpenWorkflowExecutionsRequest ;
41
45
import com .uber .cadence .ListOpenWorkflowExecutionsResponse ;
46
+ import com .uber .cadence .ListWorkflowExecutionsRequest ;
47
+ import com .uber .cadence .ListWorkflowExecutionsResponse ;
42
48
import com .uber .cadence .PollForActivityTaskRequest ;
43
49
import com .uber .cadence .PollForActivityTaskResponse ;
44
50
import com .uber .cadence .PollForDecisionTaskRequest ;
53
59
import com .uber .cadence .RequestCancelWorkflowExecutionRequest ;
54
60
import com .uber .cadence .ResetStickyTaskListRequest ;
55
61
import com .uber .cadence .ResetStickyTaskListResponse ;
62
+ import com .uber .cadence .ResetWorkflowExecutionRequest ;
63
+ import com .uber .cadence .ResetWorkflowExecutionResponse ;
56
64
import com .uber .cadence .RespondActivityTaskCanceledByIDRequest ;
57
65
import com .uber .cadence .RespondActivityTaskCanceledRequest ;
58
66
import com .uber .cadence .RespondActivityTaskCompletedByIDRequest ;
@@ -326,6 +334,14 @@ public StartWorkflowExecutionResponse SignalWithStartWorkflowExecution(
326
334
return impl .SignalWithStartWorkflowExecution (signalWithStartRequest );
327
335
}
328
336
337
+ @ Override
338
+ public ResetWorkflowExecutionResponse ResetWorkflowExecution (
339
+ ResetWorkflowExecutionRequest resetRequest )
340
+ throws BadRequestError , InternalServiceError , EntityNotExistsError , ServiceBusyError ,
341
+ DomainNotActiveError , LimitExceededError , ClientVersionNotSupportedError , TException {
342
+ return impl .ResetWorkflowExecution (resetRequest );
343
+ }
344
+
329
345
@ Override
330
346
public void TerminateWorkflowExecution (TerminateWorkflowExecutionRequest terminateRequest )
331
347
throws BadRequestError , InternalServiceError , EntityNotExistsError , ServiceBusyError ,
@@ -349,6 +365,36 @@ public ListClosedWorkflowExecutionsResponse ListClosedWorkflowExecutions(
349
365
return impl .ListClosedWorkflowExecutions (listRequest );
350
366
}
351
367
368
+ @ Override
369
+ public ListWorkflowExecutionsResponse ListWorkflowExecutions (
370
+ ListWorkflowExecutionsRequest listRequest )
371
+ throws BadRequestError , InternalServiceError , EntityNotExistsError , ServiceBusyError ,
372
+ ClientVersionNotSupportedError , TException {
373
+ return impl .ListWorkflowExecutions (listRequest );
374
+ }
375
+
376
+ @ Override
377
+ public ListWorkflowExecutionsResponse ScanWorkflowExecutions (
378
+ ListWorkflowExecutionsRequest listRequest )
379
+ throws BadRequestError , InternalServiceError , EntityNotExistsError , ServiceBusyError ,
380
+ ClientVersionNotSupportedError , TException {
381
+ return impl .ScanWorkflowExecutions (listRequest );
382
+ }
383
+
384
+ @ Override
385
+ public CountWorkflowExecutionsResponse CountWorkflowExecutions (
386
+ CountWorkflowExecutionsRequest countRequest )
387
+ throws BadRequestError , InternalServiceError , EntityNotExistsError , ServiceBusyError ,
388
+ ClientVersionNotSupportedError , TException {
389
+ return impl .CountWorkflowExecutions (countRequest );
390
+ }
391
+
392
+ @ Override
393
+ public GetSearchAttributesResponse GetSearchAttributes ()
394
+ throws InternalServiceError , ServiceBusyError , ClientVersionNotSupportedError , TException {
395
+ return impl .GetSearchAttributes ();
396
+ }
397
+
352
398
@ Override
353
399
public void RespondQueryTaskCompleted (RespondQueryTaskCompletedRequest completeRequest )
354
400
throws BadRequestError , InternalServiceError , EntityNotExistsError , TException {
@@ -535,6 +581,13 @@ public void SignalWithStartWorkflowExecution(
535
581
impl .SignalWithStartWorkflowExecution (signalWithStartRequest , resultHandler );
536
582
}
537
583
584
+ @ Override
585
+ public void ResetWorkflowExecution (
586
+ ResetWorkflowExecutionRequest resetRequest , AsyncMethodCallback resultHandler )
587
+ throws TException {
588
+ impl .ResetWorkflowExecution (resetRequest , resultHandler );
589
+ }
590
+
538
591
@ Override
539
592
public void TerminateWorkflowExecution (
540
593
TerminateWorkflowExecutionRequest terminateRequest , AsyncMethodCallback resultHandler )
@@ -556,6 +609,34 @@ public void ListClosedWorkflowExecutions(
556
609
impl .ListClosedWorkflowExecutions (listRequest , resultHandler );
557
610
}
558
611
612
+ @ Override
613
+ public void ListWorkflowExecutions (
614
+ ListWorkflowExecutionsRequest listRequest , AsyncMethodCallback resultHandler )
615
+ throws TException {
616
+ impl .ListWorkflowExecutions (listRequest , resultHandler );
617
+ }
618
+
619
+ @ Override
620
+ public void ScanWorkflowExecutions (
621
+ ListWorkflowExecutionsRequest listRequest , AsyncMethodCallback resultHandler )
622
+ throws TException {
623
+ impl .ScanWorkflowExecutions (listRequest , resultHandler );
624
+ }
625
+
626
+ @ Override
627
+ public void CountWorkflowExecutions (
628
+ CountWorkflowExecutionsRequest countRequest , AsyncMethodCallback resultHandler )
629
+ throws TException {
630
+ impl .CountWorkflowExecutions (countRequest , resultHandler );
631
+ }
632
+
633
+ @ Override
634
+ public void GetSearchAttributes (
635
+ AsyncMethodCallback resultHandler )
636
+ throws TException {
637
+ impl .GetSearchAttributes ();
638
+ }
639
+
559
640
@ Override
560
641
public void RespondQueryTaskCompleted (
561
642
RespondQueryTaskCompletedRequest completeRequest , AsyncMethodCallback resultHandler )
0 commit comments