forked from optimajet/WorkflowEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptimaJet.Workflow.Core.XML
More file actions
4523 lines (4523 loc) · 266 KB
/
OptimaJet.Workflow.Core.XML
File metadata and controls
4523 lines (4523 loc) · 266 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>OptimaJet.Workflow.Core</name>
</assembly>
<members>
<member name="T:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder">
<summary>
Interface of a workflow builder, which convert not parsed process scheme <see cref="T:OptimaJet.Workflow.Core.Model.SchemeDefinition`1"/> to the object model of a scheme of a process <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.CreateNewProcess(System.Guid,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Create new instance of the process.
</summary>
<param name="processId">Process id</param>
<param name="schemeCode">Code of the scheme</param>
<param name="parameters">The parameters for creating the scheme of the process</param>
<returns>ProcessInstance object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.CreateNewProcessScheme(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Create new scheme for existing process
</summary>
<param name="schemeCode">Code of the scheme</param>
<param name="parameters">The parameters for creating scheme of process</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.GetProcessInstance(System.Guid)">
<summary>
Returns existing process instance
</summary>
<param name="processId">Process id</param>
<returns>ProcessInstance object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.GetProcessScheme(System.Guid)">
<summary>
Returns process scheme by specific id, if scheme not exists creates it
</summary>
<param name="schemeId">Id of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.SetCache(OptimaJet.Workflow.Core.Cache.IParsedProcessCache)">
<summary>
Sets the cache to store parsed ProcessDefinition objects <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
<param name="cache">Instance of cache object</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.RemoveCache">
<summary>
Removes the cache to store parsed ProcessDefinition objects <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.GetProcessScheme(System.String)">
<summary>
Returns process scheme by specific name, if scheme not exists creates it
</summary>
<param name="schemeCode">Name of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.GetProcessScheme(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Returns process scheme by specific name and parameters for creating the scheme of the process, if scheme not exists creates it
</summary>
<param name="schemeCode">Name of the scheme</param>
<param name="parameters">The parameters for creating the scheme of the process</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.SetSchemeIsObsolete(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Set IsObsolete sign to the scheme with specific name and parameters for creating the scheme of the process
</summary>
<param name="schemeCode">Name of the scheme</param>
<param name="parameters">The parameters for creating the scheme of the process</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.SetSchemeIsObsolete(System.String)">
<summary>
Set IsObsolete sign to the scheme with specific name
</summary>
<param name="schemeCode">Name of the scheme</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.GetProcessSchemeForDesigner(System.String)">
<summary>
Returns existing process scheme directly from scheme persistence store
</summary>
<param name="code">Name of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.SaveProcessScheme(System.String,OptimaJet.Workflow.Core.Model.ProcessDefinition)">
<summary>
Saves process scheme to scheme persistence store
</summary>
<param name="schemecode">Code of the scheme</param>
<param name="pd">Object representation of the scheme</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.Parse(System.String)">
<summary>
Parses process scheme from the string
</summary>
<param name="scheme">String representation of not parsed scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.IWorkflowBuilder.Serialize(OptimaJet.Workflow.Core.Model.ProcessDefinition)">
<summary>
Serialize process scheme to the string
</summary>
<param name="processDefinition">SProcessDefinition object</param>
<returns>String representation of not parsed scheme</returns>
</member>
<member name="T:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1">
<summary>
Base workflow builder, which convert not parsed process scheme <see cref="T:OptimaJet.Workflow.Core.Model.SchemeDefinition`1"/> to the object model of a scheme of a process <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
<typeparam name="TSchemeMedium">Type of not parsed scheme <see cref="T:OptimaJet.Workflow.Core.Model.SchemeDefinition`1"/></typeparam>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.#ctor(OptimaJet.Workflow.Core.Generator.IWorkflowGenerator{`0},OptimaJet.Workflow.Core.Parser.IWorkflowParser{`0},OptimaJet.Workflow.Core.Persistence.ISchemePersistenceProvider{`0})">
<summary>
Create WorkflowBuilder object
</summary>
<param name="generator">Not parsed scheme generator <see cref="T:OptimaJet.Workflow.Core.Generator.IWorkflowGenerator`1"/></param>
<param name="parser">Parser from not parsed process scheme <see cref="T:OptimaJet.Workflow.Core.Model.SchemeDefinition`1"/> to the object model of a scheme of a process <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/></param>
<param name="schemePersistenceProvider">Scheme persistemce provider <see cref="T:OptimaJet.Workflow.Core.Persistence.ISchemePersistenceProvider`1"/></param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.GetProcessScheme(System.Guid)">
<summary>
Returns process scheme by specific id, if scheme not exists creates it
</summary>
<param name="schemeId">Id of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.GetProcessScheme(System.String)">
<summary>
Returns process scheme by specific name, if scheme not exists creates it
</summary>
<param name="schemeCode">Name of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.GetProcessScheme(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Returns process scheme by specific name and parameters for creating the scheme of the process, if scheme not exists creates it
</summary>
<param name="schemeCode">Name of the scheme</param>
<param name="parameters">The parameters for creating the scheme of the process</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.CreateNewProcess(System.Guid,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Create new instance of the process.
</summary>
<param name="schemeCode">Code of the scheme</param>
<param name="processId">Process id</param>
<param name="parameters">The parameters for creating the scheme of the process</param>
<returns>ProcessInstance object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.GetProcessInstance(System.Guid)">
<summary>
Returns existing process instance
</summary>
<param name="processId">Process id</param>
<returns>ProcessInstance object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.CreateNewProcessScheme(System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Create new scheme for existing process
</summary>
<param name="schemeCode">Code of the scheme</param>
<param name="parameters">The parameters for creating scheme of process</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.SetCache(OptimaJet.Workflow.Core.Cache.IParsedProcessCache)">
<summary>
Sets the cache to store parsed ProcessDefinition objects <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
<param name="cache">Instance of cache object</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.RemoveCache">
<summary>
Removes the cache to store parsed ProcessDefinition objects <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.SetSchemeIsObsolete(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Set IsObsolete sign to the scheme with specific name and parameters for creating the scheme of the process
</summary>
<param name="schemeCode">Name of the scheme</param>
<param name="parameters">The parameters for creating the scheme of the process</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.SetSchemeIsObsolete(System.String)">
<summary>
Set IsObsolete sign to the scheme with specific name
</summary>
<param name="schemeCode">Name of the scheme</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.GetProcessSchemeForDesigner(System.String)">
<summary>
Returns existing process scheme directly from scheme persistence store
</summary>
<param name="code">Name of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.SaveProcessScheme(System.String,OptimaJet.Workflow.Core.Model.ProcessDefinition)">
<summary>
Saves process scheme to scheme persistence store
</summary>
<param name="schemecode">Code of the scheme</param>
<param name="pd">Object representation of the scheme</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.Parse(System.String)">
<summary>
Parses process scheme from the string
</summary>
<param name="scheme">String representation of not parsed scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Builder.WorkflowBuilder`1.Serialize(OptimaJet.Workflow.Core.Model.ProcessDefinition)">
<summary>
Serialize process scheme to the string
</summary>
<param name="processDefinition">SProcessDefinition object</param>
<returns>String representation of not parsed scheme</returns>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.ActivityExecutor">
<summary>
Provides choice of activity for execution <see cref="P:OptimaJet.Workflow.Core.Model.TransitionDefinition.Conditions"/> and execution of actions <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.Implementation"/> and <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.PreExecutionImplementation"/> in chosen activity
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ActivityExecutor.#ctor(OptimaJet.Workflow.Core.Runtime.WorkflowRuntime,System.Action{OptimaJet.Workflow.Core.Model.ProcessInstance})">
<summary>
Create ActivityExecutor object
</summary>
<param name="runtime">WorkflowRuntime instance which owned executor</param>
<param name="beforeExecutionAction">Action will be called before execution</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ActivityExecutor.#ctor(OptimaJet.Workflow.Core.Runtime.WorkflowRuntime,System.Boolean,System.Action{OptimaJet.Workflow.Core.Model.ProcessInstance})">
<summary>
Create ActivityExecutor object
</summary>
<param name="runtime">WorkflowRuntime instance which owned executor</param>
<param name="isPreExecution">If true then Result Pre Execution will be considered in time of the check of conditions</param>
/// <param name="beforeExecutionAction">Action will be called before execution</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ActivityExecutor.Execute(System.Collections.Generic.IEnumerable{OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters})">
<summary>
Provides choice of activity for execution <see cref="P:OptimaJet.Workflow.Core.Model.TransitionDefinition.Conditions"/> and execution of actions <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.Implementation"/> and <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.PreExecutionImplementation"/> in chosen activity
</summary>
<param name="requestParameters">List of execution requests which contains conditions and actions <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/></param>
<returns>Execution result</returns>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ActivityExecutor.ActionProvider">
<summary>
Returns action provider <see cref="T:OptimaJet.Workflow.Core.Runtime.IWorkflowActionProvider"/> from associated workflow runtime
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters">
<summary>
Represent execution request which contains conditions and actions
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Model.TransitionDefinition)">
<summary>
Create ExecutionRequestParameters object
</summary>
<param name="processInstance">Process instance which requested execution</param>
<param name="transition">Executed transition</param>
<returns>ExecutionRequestParameters object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Model.TransitionDefinition,System.Boolean)">
<summary>
Create ExecutionRequestParameters object
</summary>
<param name="processInstance">Process instance which requested execution</param>
<param name="transition">Executed transition</param>
<param name="isPreExecution">If true pre-execution implementation will be requested to execute <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.PreExecutionImplementation"/>, if false implementation will be requested to execute <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.Implementation"/></param>
<returns>ExecutionRequestParameters object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Model.ActivityDefinition,System.Collections.Generic.List{OptimaJet.Workflow.Core.Model.ConditionDefinition})">
<summary>
Create ExecutionRequestParameters object
</summary>
<param name="processInstance">Process instance which requested execution</param>
<param name="activityToExecute">Activity to execute</param>
<param name="conditions">List of conditions to check</param>
<returns>ExecutionRequestParameters object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Model.ActivityDefinition,System.Collections.Generic.List{OptimaJet.Workflow.Core.Model.ConditionDefinition},System.Boolean)">
<summary>
Create ExecutionRequestParameters object
</summary>
<param name="processInstance">Process instance which requested execution</param>
<param name="activityToExecute">Activity to execute</param>
<param name="conditions">List of conditions to check</param>
<param name="isPreExecution">If true pre-execution implementation will be requested to execute <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.PreExecutionImplementation"/>, if false implementation will be requested to execute <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.Implementation"/></param>
<returns>ExecutionRequestParameters object</returns>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.ProcessInstance">
<summary>
Returns Process instance which requested execution
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.ProcessId">
<summary>
Returns id of the process instance
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.Methods">
<summary>
List of actions to execute in the case of conditions are satisfied
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.Conditions">
<summary>
List of conditions to check
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.TransitionName">
<summary>
Executed transition name
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.ActivityName">
<summary>
Executed activity name <see cref="P:OptimaJet.Workflow.Core.Model.TransitionDefinition.To"/>
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.ConditionsConcatenationType">
<summary>
Type of concatenation for conditions
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.Activity">
<summary>
Activity to execute
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.IsAlways">
<summary>
Returns true if condition type of the transition is equal "Always" <see cref="F:OptimaJet.Workflow.Core.Model.ConditionType.Always"/>
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.IsOtherwise">
<summary>
Returns true if condition type of the transition is equal "Otherwise" <see cref="F:OptimaJet.Workflow.Core.Model.ConditionType.Otherwise"/>
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters.IsCondition">
<summary>
Returns true if condition type of the transition is equal "Action" <see cref="F:OptimaJet.Workflow.Core.Model.ConditionType.Action"/>
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.ExecutionResponseEventArgs">
<summary>
Represent Event args with a execution result <see cref="T:OptimaJet.Workflow.Core.Bus.ActivityExecutor"/>
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionResponseEventArgs.#ctor(OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters)">
<summary>
Create ExecutionResponseEventArgs object
</summary>
<param name="parameters">Execution result</param>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseEventArgs.Parameters">
<summary>
Execution result
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters">
<summary>
Represent execution result which contains information about execution
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,System.String)">
<summary>
Create ExecutionResponseParametersComplete object
</summary>
<param name="processInstance">Process instance which requested execution </param>
<param name="executedActivityName">Activity name which was executed</param>
<returns>ExecutionResponseParametersComplete object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,System.String,System.String)">
<summary>
Create ExecutionResponseParametersComplete object
</summary>
<param name="processInstance">Process instance which requested execution </param>
<param name="executedActivityName">Activity name which was executed</param>
<param name="executedTransitionName">Transition name which was executed</param>
<returns>ExecutionResponseParametersComplete object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,System.String,System.Exception)">
<summary>
Create ExecutionResponseParametersError object
</summary>
<param name="processInstance">Process instance which requested execution </param>
<param name="executedActivityName">Activity name which was executed</param>
<param name="exception">Exception which occured in time of execution</param>
<returns>ExecutionResponseParametersError object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.Create(OptimaJet.Workflow.Core.Model.ProcessInstance,System.String,System.String,System.Exception)">
<summary>
Create ExecutionResponseParametersError object
</summary>
<param name="processInstance">Process instance which requested execution </param>
<param name="executedActivityName">Activity name which was executed</param>
<param name="executedTransitionName">Transition name which was executed</param>
<param name="exception">Exception which occured in time of execution</param>
<returns>ExecutionResponseParametersError object</returns>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.ProcessId">
<summary>
Returns id of the process instance
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.ProcessInstance">
<summary>
Returns Process instance which requested execution
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.ExecutedTransitionName">
<summary>
Transition name which was executed
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.ExecutedActivityName">
<summary>
Activity name which was executed
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.IsError">
<summary>
If True means execution error
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.IsEmplty">
<summary>
Return True if ExecutionResponseParameters is empty
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParameters.Empty">
<summary>
Returns instane of empty ExecutionResponseParameters
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.ExecutionResponseParametersComplete">
<summary>
Represent execution result completed without errors
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.ExecutionResponseParametersError">
<summary>
Represent execution result completed with errors
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParametersError.IsError">
<summary>
If True means execution error
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.ExecutionResponseParametersError.Exception">
<summary>
Exception which occured in time of execution
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.IWorkflowBus">
<summary>
Interface of a bus, which provide control over execution of activities and actions
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.IWorkflowBus.Initialize(OptimaJet.Workflow.Core.Runtime.WorkflowRuntime)">
<summary>
Initialize the bus
</summary>
<param name="runtime">WorkflowRuntime instance which owned the bus</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.IWorkflowBus.Start">
<summary>
Starts the bus
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.IWorkflowBus.QueueExecution(System.Collections.Generic.IEnumerable{OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters},System.Boolean)">
<summary>
Queue execution with the list of <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/>
</summary>
<param name="requestParameters">List of <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/></param>
<param name="notFireExecutionComplete">If true - the Bus must execute the Request without firing ExecutionComplete</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.IWorkflowBus.QueueExecution(OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters,System.Boolean)">
<summary>
Queue execution with the <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/>
</summary>
<param name="requestParameters">Instance of <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/></param>
<param name="notFireExecutionComplete">If true - the Bus must execute the Request without firing ExecutionComplete</param>
</member>
<member name="E:OptimaJet.Workflow.Core.Bus.IWorkflowBus.ExecutionComplete">
<summary>
Raises after the execution was complete
</summary>
</member>
<member name="E:OptimaJet.Workflow.Core.Bus.IWorkflowBus.BeforeExecution">
<summary>
Raises before execution of choosen activity
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.IWorkflowBus.IsAsync">
<summary>
Returns true if the bus supports asynchronous model of execution
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Bus.NullBus">
<summary>
Represent simple synchronous <see cref="T:OptimaJet.Workflow.Core.Bus.IWorkflowBus"/>
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.NullBus.Initialize(OptimaJet.Workflow.Core.Runtime.WorkflowRuntime)">
<summary>
Initialize the bus
</summary>
<param name="runtime">WorkflowRuntime instance which owned the bus</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.NullBus.Start">
<summary>
Starts the bus
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.NullBus.QueueExecution(System.Collections.Generic.IEnumerable{OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters},System.Boolean)">
<summary>
Queue execution with the list of <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/>
</summary>
<param name="requestParameters">List of <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/></param>
<param name="notFireExecutionComplete">If true - the Bus must execute the Request without firing ExecutionComplete</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Bus.NullBus.QueueExecution(OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters,System.Boolean)">
<summary>
Queue execution with the <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/>
</summary>
<param name="requestParameters">Instance of <see cref="T:OptimaJet.Workflow.Core.Bus.ExecutionRequestParameters"/></param>
<param name="notFireExecutionComplete">If true - the Bus must execute the Request without firing ExecutionComplete</param>
</member>
<member name="E:OptimaJet.Workflow.Core.Bus.NullBus.ExecutionComplete">
<summary>
Raises after the execution was complete
</summary>
</member>
<member name="E:OptimaJet.Workflow.Core.Bus.NullBus.BeforeExecution">
<summary>
Raises before execution of choosen activity
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Bus.NullBus.IsAsync">
<summary>
Returns true if the bus supports asynchronous model of execution
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Cache.DefaultParcedProcessCache">
<summary>
Default cache <see cref="T:OptimaJet.Workflow.Core.Cache.IParsedProcessCache"/> for parced processes <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Cache.IParsedProcessCache">
<summary>
Interface of a cache for parced processes <see cref="T:OptimaJet.Workflow.Core.Model.ProcessDefinition"/>
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Cache.IParsedProcessCache.Clear">
<summary>
Clear the cache
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Cache.IParsedProcessCache.GetProcessDefinitionBySchemeId(System.Guid)">
<summary>
Returns process definition from the cache by scheme id
</summary>
<param name="schemeId">Id of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Cache.IParsedProcessCache.AddProcessDefinition(System.Guid,OptimaJet.Workflow.Core.Model.ProcessDefinition)">
<summary>
Adds process definition to the cache with scheme id as the key
</summary>
<param name="schemeId">Id of the scheme</param>
<param name="processDefinition">ProcessDefinition object</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Cache.DefaultParcedProcessCache.Clear">
<summary>
Clear the cache
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Cache.DefaultParcedProcessCache.GetProcessDefinitionBySchemeId(System.Guid)">
<summary>
Returns process definition from the cache by scheme id, if process definition is not exists in the cache returns null
</summary>
<param name="schemeId">Id of the scheme</param>
<returns>ProcessDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Cache.DefaultParcedProcessCache.AddProcessDefinition(System.Guid,OptimaJet.Workflow.Core.Model.ProcessDefinition)">
<summary>
Adds process definition to the cache with scheme id as the key
</summary>
<param name="schemeId">Id of the scheme</param>
<param name="processDefinition">ProcessDefinition object</param>
</member>
<member name="T:OptimaJet.Workflow.Core.CodeActions.CodeActionsCompiller">
<summary>
Provides compillation of code actions
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.CodeActions.CodeActionsInvoker">
<summary>
Provides invoke of code actions by name
</summary>
</member>
<member name="T:OptimaJet.Workflow.Designer">
<summary>
Extension which provides API for HTML5 Workflow Designer
</summary>
</member>
<member name="M:OptimaJet.Workflow.Designer.DesignerAPI(OptimaJet.Workflow.Core.Runtime.WorkflowRuntime,System.Collections.Specialized.NameValueCollection,System.IO.Stream,System.Boolean)">
<summary>
API for HTML5 Workflow Designer. Contains following operations:
- bool exists(schemecode, schemeid, processid) Checks existence of the scheme of the process with specific code, id or id of the process
- JSON load(schemecode, schemeid, processid) Returns the scheme of the process in JSON format by specific code, id or id of the process
- JSON save(schemecode, data) Saves the scheme with specified code. Ruturns updated scheme.
- JSON uploadscheme(filestream) Converts scheme uploaded as XML file to JSON.
- XML downloadscheme(data) Converts scheme from JSON object to XML.
- object compile(data) Method for test compile of code actions
-JSON getemptytype(typename) returns serialized empty type
Type of the operation determined by "operation" parameter from request parameters
</summary>
<param name="runtime">The instance of the runtime</param>
<param name="form">Parameters from request. Allowed parameters is: "operation", "schemecode", "schemeid", "processid", "data"</param>
<param name="filestream">Stream which represent uploaded file</param>
<param name="setIsObsoleForOperationSave">If true and operation is "save" IsObsolete property will be set to all shemes of processes with specified code</param>
<returns>Operation execution result</returns>
</member>
<member name="T:OptimaJet.Workflow.Core.Generator.IWorkflowGenerator`1">
<summary>
Interface of a workflow generator, which generate not parsed process scheme <see cref="T:OptimaJet.Workflow.Core.Model.SchemeDefinition`1"/>
</summary>
<typeparam name="TSchemeMedium">Type of not parsed scheme</typeparam>
</member>
<member name="M:OptimaJet.Workflow.Core.Generator.IWorkflowGenerator`1.Generate(System.String,System.Guid,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Generate not parsed process scheme
</summary>
<param name="schemeCode">Code of the scheme</param>
<param name="schemeId">Id of the scheme</param>
<param name="parameters">Parameters for creating scheme</param>
<returns>Not parsed process scheme</returns>
</member>
<member name="T:OptimaJet.Workflow.Core.Generator.TTXmlWorkflowGenerator">
<summary>
Generate process scheme from TT template
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Generator.TTXmlWorkflowGenerator.Generate(System.String,System.Guid,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Generate not parsed process scheme
</summary>
<param name="schemeCode">Code of the scheme</param>
<param name="schemeId">Id of the scheme</param>
<param name="parameters">Parameters for creating scheme</param>
<returns>Not parsed process scheme</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Generator.TTXmlWorkflowGenerator.AddMapping(System.String,System.Object)">
<summary>
Adds relationship between code of the scheme and TT template type
</summary>
<param name="schemeCode">Code of the scheme</param>
<param name="generatorSource">TT template type</param>
</member>
<member name="T:OptimaJet.Workflow.Core.License.WorkflowEngineNetRestrictions">
<summary>
Represent restriction settings for WorkflowEngine .Net
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.License.LicenseKey`1">
<summary>
Represent a license key
</summary>
<typeparam name="T">Type of restriction object</typeparam>
</member>
<member name="T:OptimaJet.Workflow.Core.License.Licensing">
<summary>
License help methods
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.ActionDefinitionReference">
<summary>
Represent a reference on action in a process scheme
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.ActionDefinitionReference.Create(System.String,System.String,System.String)">
<summary>
Create ActionDefinitionReference object
</summary>
<param name="actionName">Name of the action</param>
<param name="order">Execution order of the action</param>
<param name="parameter">Additional parameter which is passed to the appropriate methods <see cref="T:OptimaJet.Workflow.Core.Runtime.IWorkflowActionProvider"/></param>
<returns>ActionDefinitionReference object</returns>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActionDefinitionReference.ActionName">
<summary>
Name of the action
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActionDefinitionReference.Order">
<summary>
Execution order of the action
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActionDefinitionReference.ActionParameter">
<summary>
Additional parameter which is passed to the appropriate methods <see cref="T:OptimaJet.Workflow.Core.Runtime.IWorkflowActionProvider"/>
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.ActivityDefinition">
<summary>
Represent an activity in a process scheme
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.BaseDefinition">
<summary>
Represent a base object in a process scheme
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.BaseDefinition.Name">
<summary>
Name of the object in scheme
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.BaseDefinition.DesignerSettings">
<summary>
Designer settings which used be Workflow Designer
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.ActivityDefinition.Create(System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>
Create ActivityDefinition object
</summary>
<param name="name">Name of the activity</param>
<param name="stateName">Name of the state</param>
<param name="isInitial">If true specifies that the activity is final. The process is marked as finalized after execution of the activity marked as final.</param>
<param name="isFinal">If true specifies that the activity is final. The process is marked as finalized after execution of the activity marked as final.</param>
<param name="isForSetState">If true specifies that the activity is entry point for a state and possible to set the state with the <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.State"/> name via <see cref="M:OptimaJet.Workflow.Core.Runtime.WorkflowRuntime.SetState(System.Guid,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean)"/> method</param>
<param name="isAutoSchemeUpdate">If true specifies that if process scheme obsolete than Workflow Runtime will try upgrade it automatically if this activity is current</param>
<returns>ActivityDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.ActivityDefinition.Create(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Create ActivityDefinition object
</summary>
<param name="name">Name of the activity</param>
<param name="stateName">Name of the state</param>
<param name="isInitial">If true specifies that the activity is final. The process is marked as finalized after execution of the activity marked as final.</param>
<param name="isFinal">If true specifies that the activity is final. The process is marked as finalized after execution of the activity marked as final.</param>
<param name="isForSetState">If true specifies that the activity is entry point for a state and possible to set the state with the <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.State"/> name via <see cref="M:OptimaJet.Workflow.Core.Runtime.WorkflowRuntime.SetState(System.Guid,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean)"/> method</param>
<param name="isAutoSchemeUpdate">If true specifies that if process scheme obsolete than Workflow Runtime will try upgrade it automatically if this activity is current</param>
<returns>ActivityDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.ActivityDefinition.AddAction(OptimaJet.Workflow.Core.Model.ActionDefinitionReference)">
<summary>
Add <see cref="T:OptimaJet.Workflow.Core.Model.ActionDefinitionReference"/> to implementation list
</summary>
<param name="action">Action reference</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.ActivityDefinition.AddPreExecutionAction(OptimaJet.Workflow.Core.Model.ActionDefinitionReference)">
<summary>
Add <see cref="T:OptimaJet.Workflow.Core.Model.ActionDefinitionReference"/> to pre-execution implementation list
</summary>
<param name="action">Action reference</param>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.State">
<summary>
Name of the state
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.IsInitial">
<summary>
If true specifies that the activity is initial. There can be only one initial activity in scheme. Initial activity is the entry point of the process.
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.IsFinal">
<summary>
If true specifies that the activity is final. The process is marked as finalized after execution of the activity marked as final.
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.IsForSetState">
<summary>
If true specifies that the activity is entry point for a state and possible to set the state with the <see cref="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.State"/> name via <see cref="M:OptimaJet.Workflow.Core.Runtime.WorkflowRuntime.SetState(System.Guid,System.String,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean)"/> method
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.IsAutoSchemeUpdate">
<summary>
If true specifies that if process scheme obsolete than Workflow Runtime will try upgrade it automatically if this activity is current
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.HaveImplementation">
<summary>
Specifies that activity have an implementation
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.HavePreExecutionImplementation">
<summary>
Specifies that activity have a pre-execution implementation
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.Implementation">
<summary>
List of <see cref="T:OptimaJet.Workflow.Core.Model.ActionDefinitionReference"/> which are executed at standard workflow execution
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.PreExecutionImplementation">
<summary>
List of <see cref="T:OptimaJet.Workflow.Core.Model.ActionDefinitionReference"/> which are executed at pre-execution
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.IsState">
<summary>
Specifies that state is assigned
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActivityDefinition.NestingLevel">
<summary>
Nesting level of subprocess, 0 - root process, 1-... -subprocesses, null - not assigned
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.ActorDefinition">
<summary>
Represent an actor in a process scheme
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.ActorDefinition.Create(System.String,System.String,System.String)">
<summary>
Create ActorDefinition object
</summary>
<param name="name">Name of the actor</param>
<param name="rule">Rule name which is associated with the actor</param>
<param name="value">Additional parameter which is passed to the appropriate methods <see cref="T:OptimaJet.Workflow.Core.Runtime.IWorkflowRuleProvider"/></param>
<returns>ActorDefinition object</returns>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActorDefinition.Rule">
<summary>
Rule name which is associated with the actor
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ActorDefinition.Value">
<summary>
Additional parameter which is passed to the appropriate methods <see cref="T:OptimaJet.Workflow.Core.Runtime.IWorkflowRuleProvider"/>
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.CodeActionType">
<summary>
Type of a code action which determine a area of use of a code action
</summary>
</member>
<member name="F:OptimaJet.Workflow.Core.Model.CodeActionType.Action">
<summary>
Code action uses like an action <see cref="M:OptimaJet.Workflow.Core.Runtime.IWorkflowActionProvider.ExecuteAction(System.String,OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Runtime.WorkflowRuntime,System.String)"/>
</summary>
</member>
<member name="F:OptimaJet.Workflow.Core.Model.CodeActionType.Condition">
<summary>
Code action uses like a condition <see cref="M:OptimaJet.Workflow.Core.Runtime.IWorkflowActionProvider.ExecuteCondition(System.String,OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Runtime.WorkflowRuntime,System.String)"/>
</summary>
</member>
<member name="F:OptimaJet.Workflow.Core.Model.CodeActionType.RuleGet">
<summary>
Code action uses like users get method <see cref="M:OptimaJet.Workflow.Core.Runtime.IWorkflowRuleProvider.GetIdentities(OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Runtime.WorkflowRuntime,System.String,System.String)"/>
</summary>
</member>
<member name="F:OptimaJet.Workflow.Core.Model.CodeActionType.RuleCheck">
<summary>
Code action uses like check rule method <see cref="M:OptimaJet.Workflow.Core.Runtime.IWorkflowRuleProvider.Check(OptimaJet.Workflow.Core.Model.ProcessInstance,OptimaJet.Workflow.Core.Runtime.WorkflowRuntime,System.String,System.String,System.String)"/>
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.CodeActionDefinition">
<summary>
Represent a code action in a process scheme
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.CodeActionDefinition.Create(System.String,System.String,System.String,System.String,System.String)">
<summary>
Create CodeActionDefinition object
</summary>
<param name="name">Name of the code action</param>
<param name="usings">List of usings separated by ;</param>
<param name="actionCode">Source code of the code action</param>
<param name="isglobal">If true specifies that the code action stored in global parameters but not in scheme. In this case code action is shared between schemes</param>
<param name="type">ype of the code action <see cref="T:OptimaJet.Workflow.Core.Model.CodeActionType"/></param>
<returns>CodeActionDefinition object</returns>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.CodeActionDefinition.ActionCode">
<summary>
Source code of the code action
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.CodeActionDefinition.Type">
<summary>
Type of the code action <see cref="T:OptimaJet.Workflow.Core.Model.CodeActionType"/>
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.CodeActionDefinition.IsGlobal">
<summary>
If true specifies that the code action stored in global parameters but not in scheme. In this case code action is shared between schemes
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.CodeActionDefinition.Usings">
<summary>
List of usings separated by ;
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.CommandDefinition">
<summary>
Represent a command in a process scheme
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.CommandDefinition.Create(System.String)">
<summary>
Create CommandDefinition object
</summary>
<param name="name">Name of the command</param>
<returns></returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.CommandDefinition.AddParameterRef(System.String,System.Boolean,System.String,OptimaJet.Workflow.Core.Model.ParameterDefinition)">
<summary>
Add the reference on the parameter to InputParameters collection
</summary>
<param name="name">Name of the reference</param>
<param name="isRequired">Indicates that the parameter is required</param>
<param name="defaultValue">JSON serialized default value or string</param>
<param name="parameter">Parameter definition</param>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.CommandDefinition.AddParameterRef(System.String,OptimaJet.Workflow.Core.Model.ParameterDefinition)">
<summary>
Add the reference on the parameter to InputParameters collection
</summary>
<param name="name">Name of the reference</param>
<param name="parameter">Parameter definition</param>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.CommandDefinition.InputParameters">
<summary>
List of references on parameters <see cref="T:OptimaJet.Workflow.Core.Model.ParameterDefinitionReference"/>
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.ParameterDefinitionReference">
<summary>
Represents a named reference on a parameter in a process scheme
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ParameterDefinitionReference.Name">
<summary>
Name of the reference
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ParameterDefinitionReference.IsRequired">
<summary>
Indicates that the parameter is required
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ParameterDefinitionReference.DefaultValue">
<summary>
JSON serialized default value or string
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.ParameterDefinitionReference.Parameter">
<summary>
Parameter definition
</summary>
</member>
<member name="T:OptimaJet.Workflow.Core.Model.TriggerDefinition">
<summary>
Represent a transition's trigger in a process scheme
</summary>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.TriggerDefinition.#ctor(OptimaJet.Workflow.Core.Model.TriggerType)">
<summary>
Create TriggerDefinition object
</summary>
<param name="type">Type of the trigger <see cref="T:OptimaJet.Workflow.Core.Model.TriggerType"/></param>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.TriggerDefinition.Create(System.String)">
<summary>
Create TriggerDefinition object
</summary>
<param name="type">Type of the trigger <see cref="T:OptimaJet.Workflow.Core.Model.TriggerType"/></param>
<returns>TriggerDefinition object</returns>
</member>
<member name="M:OptimaJet.Workflow.Core.Model.TriggerDefinition.Clone(System.Collections.Generic.List{OptimaJet.Workflow.Core.Model.CommandDefinition},System.Collections.Generic.List{OptimaJet.Workflow.Core.Model.TimerDefinition})">
<summary>
Clones TriggerDefinition object replacing references to the references to the specific objects
</summary>
<param name="commandDefinitions">List of the commands to replace</param>
<param name="timerDefinitions">List of the timers to replace</param>
<returns>Cloned TriggerDefinition object</returns>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.TriggerDefinition.Type">
<summary>
Type of the trigger <see cref="T:OptimaJet.Workflow.Core.Model.TriggerType"/>
</summary>
</member>
<member name="P:OptimaJet.Workflow.Core.Model.TriggerDefinition.NameRef">
<summary>