├── .gitignore ├── README.md ├── README_zh-CN.md ├── db └── mysql │ ├── bpmtk_init.sql │ └── bpmtk_init_with_data.sql ├── documentation └── formal-11-01-03.pdf └── src ├── Bpmtk.Bpmn2 ├── Bpmtk.Bpmn2.csproj ├── Bpmtk.Bpmn2.csproj.user ├── Choreographies │ ├── CallChoreography.cs │ ├── Choreography.cs │ ├── ChoreographyActivity.cs │ ├── ChoreographyLoopType.cs │ ├── ChoreographyTask.cs │ ├── GlobalChoreographyTask.cs │ └── SubChoreography.cs ├── Collaboration │ ├── Collaboration.cs │ ├── ConversationAssociation.cs │ ├── ConversationLink.cs │ ├── ConversationNode.cs │ ├── LaneSet.cs │ ├── MessageFlow.cs │ ├── MessageFlowAssociation.cs │ ├── Participant.cs │ └── ParticipantAssociation.cs ├── Common │ ├── Artifact.cs │ ├── CatchEvent.cs │ ├── DataStore.cs │ ├── Error.cs │ ├── Event.cs │ ├── EventDefinition.cs │ ├── Expression.cs │ ├── FlowElement.cs │ ├── Gateway.cs │ ├── IFlowElementsContainer.cs │ ├── ItemDefinition.cs │ ├── Message.cs │ ├── Rendering.cs │ ├── Resource.cs │ ├── Signal.cs │ └── ThrowEvent.cs ├── DC │ ├── Bounds.cs │ ├── Font.cs │ └── Point.cs ├── DI │ ├── BPMNDiagram.cs │ ├── BPMNEdge.cs │ ├── BPMNLabel.cs │ ├── BPMNLabelStyle.cs │ ├── BPMNPlane.cs │ ├── BPMNShape.cs │ ├── Diagram.cs │ ├── DiagramElement.cs │ ├── Edge.cs │ ├── ILabeled.cs │ ├── Label.cs │ ├── LabeledEdge.cs │ ├── LabeledShape.cs │ ├── MessageVisibleKind.cs │ ├── Node.cs │ ├── ParticipantBandKind.cs │ ├── Plane.cs │ ├── Shape.cs │ └── Style.cs ├── Extensions │ ├── EventListener.cs │ ├── ExtendedAttribute.cs │ ├── FormField.cs │ ├── IScriptEnabledElement.cs │ ├── ResourceType.cs │ ├── Script.cs │ └── TaskPriority.cs ├── Foundation │ ├── BaseElement.cs │ ├── BaseElementWithMixedContent.cs │ ├── Documentation.cs │ ├── ExtensionElements.cs │ └── RootElement.cs ├── IFlowNodeVisitor.cs ├── Infrastructure │ ├── Definitions.cs │ └── Import.cs ├── Process │ ├── Activities │ │ ├── Activity.cs │ │ ├── AdHocSubProcess.cs │ │ ├── BusinessRuleTask.cs │ │ ├── CallActivity.cs │ │ ├── GlobalManualTask.cs │ │ ├── GlobalScriptTask.cs │ │ ├── GlobalTask.cs │ │ ├── GlobalUserTask.cs │ │ ├── LoopCharacteristics.cs │ │ ├── ManualTask.cs │ │ ├── MultiInstanceLoopCharacteristics.cs │ │ ├── ReceiveTask.cs │ │ ├── ScriptTask.cs │ │ ├── SendTask.cs │ │ ├── ServiceTask.cs │ │ ├── StandardLoopCharacteristics.cs │ │ ├── SubProcess.cs │ │ ├── Task.cs │ │ ├── Transaction.cs │ │ └── UserTask.cs │ ├── CallableElement.cs │ ├── Data │ │ ├── Assignment.cs │ │ ├── DataAssociation.cs │ │ ├── DataInput.cs │ │ ├── DataInputAssociation.cs │ │ ├── DataObject.cs │ │ ├── DataObjectReference.cs │ │ ├── DataOutput.cs │ │ ├── DataOutputAssociation.cs │ │ ├── DataState.cs │ │ ├── IItemAwareElement.cs │ │ ├── InputOutputSpecification.cs │ │ ├── InputSet.cs │ │ ├── OutputSet.cs │ │ └── Property.cs │ ├── Events │ │ ├── BoundaryEvent.cs │ │ ├── EndEvent.cs │ │ ├── ImplicitThrowEvent.cs │ │ ├── IntermediateCatchEvent.cs │ │ ├── IntermediateThrowEvent.cs │ │ └── StartEvent.cs │ ├── FlowElementCollection.cs │ ├── FlowNode.cs │ ├── Gateways │ │ ├── ComplexGateway.cs │ │ ├── EventBasedGateway.cs │ │ ├── ExclusiveGateway.cs │ │ ├── InclusiveGateway.cs │ │ └── ParallelGateway.cs │ ├── Process.cs │ ├── ResourceRole.cs │ └── SequenceFlow.cs ├── Schema │ ├── BPMN20.xsd │ ├── BPMNDI.xsd │ ├── DC.xsd │ ├── DI.xsd │ ├── Extensions.xsd │ └── Semantic.xsd └── Services │ ├── EndPoint.cs │ ├── Interface.cs │ └── Operation.cs ├── Bpmtk.Engine.EntityFrameworkCore ├── BpmDbContext.cs ├── Bpmtk.Engine.EntityFrameworkCore.csproj ├── Bpmtk.Engine.EntityFrameworkCore.csproj.user ├── Builders │ ├── ActivityInstanceConfiguration.cs │ ├── ActivityVariableConfiguration.cs │ ├── ByteArrayConfiguration.cs │ ├── CommentConfiguration.cs │ ├── Consts.cs │ ├── DefaultNamingStrategy.cs │ ├── DeploymentConfiguration.cs │ ├── EntityTypeConfiguration.cs │ ├── EventSubscriptionConfiguration.cs │ ├── GroupConfiguration.cs │ ├── HistoricModelConfiguration.cs │ ├── HistoricPackageItemConfiguration.cs │ ├── IEntityTypeConfiguration.cs │ ├── INamingStrategy.cs │ ├── IdentityLinkConfiguration.cs │ ├── PackageConfiguration.cs │ ├── PackageItemConfiguration.cs │ ├── ProcessDefinitionConfiguration.cs │ ├── ProcessInstanceConfiguration.cs │ ├── ScheduledJobConfiguration.cs │ ├── TaskConfiguration.cs │ ├── TokenConfiguration.cs │ ├── UserConfiguration.cs │ ├── UserGroupConfiguration.cs │ └── VariableConfiguration.cs ├── ContextFactory.cs ├── ContextTransaction.cs ├── DbSession.cs ├── IBpmDbContext.cs └── ModelBuilderExtensions.cs ├── Bpmtk.Engine.Hibernate ├── Bpmtk.Engine.Hibernate.csproj ├── Cfg │ └── NamingStrategy.cs ├── DeploymentStore.cs ├── EventSubscriptionStore.cs ├── HibernateExtensions.cs ├── HibernateOptions.cs ├── IdentityStore.cs ├── InstanceStore.cs ├── Internal │ ├── ActivityInstanceQuery.cs │ ├── TaskQuery.cs │ └── TokenQuery.cs ├── Mappings │ ├── ActivityInstance.hbm.xml │ ├── ActivityVariable.hbm.xml │ ├── ByteArray.hbm.xml │ ├── Deployment.hbm.xml │ ├── EventSubscription.hbm.xml │ ├── Group.hbm.xml │ ├── HistoricToken.hbm.xml │ ├── IdentityLink.hbm.xml │ ├── Package.hbm.xml │ ├── ProcessDefinition.hbm.xml │ ├── ProcessInstance.hbm.xml │ ├── ProcessVariable.hbm.xml │ ├── ScheduledJob.hbm.xml │ ├── TaskInstance.hbm.xml │ ├── Token.hbm.xml │ ├── User.hbm.xml │ └── Variable.hbm.xml ├── ScheduledJobStore.cs ├── TaskStore.cs ├── UnitOfWork.cs └── nhibernate.cfg.xml ├── Bpmtk.Engine.Tests ├── APIs │ ├── RuntimeManagerTestCase.cs │ └── TaskManagerTestCase.cs ├── Bpmn │ ├── Event │ │ └── SingleMessageStartEventTestCase.cs │ ├── Gateway │ │ ├── ExclusiveGatewayTestCase.cs │ │ └── NestedForkJoinTestCase.cs │ ├── MultiInstance │ │ ├── ParallelScriptTasksTestCase.cs │ │ ├── SequentialScriptTasksCompletionConditionTestCase.cs │ │ ├── SequentialScriptTasksTestCase.cs │ │ ├── SequentialSubProcessEmptyCollectionTestCase.cs │ │ ├── SequentialSubProcessTestCase.cs │ │ ├── SequentialSubprocessCompletionConditionTestCase.cs │ │ └── SequentialUserTasksEmptyCollectionTestCase.cs │ ├── Process │ │ ├── DataObjectScopeTestCase.cs │ │ └── NestedSubProcessTestCase.cs │ └── UserTask │ │ ├── AssignTaskByVariableTestCase.bpmn.xml │ │ └── AssignTaskByVariableTestCase.cs ├── Bpmtk.Engine.Tests.csproj ├── Bpmtk.Engine.Tests.csproj.user ├── BpmtkTestCase.cs ├── Deploy │ ├── CreateInstanceIdentityLinkTestCase.bpmn.xml │ └── IdentityLinkTestCase.cs ├── Event │ ├── BpmnInlineScriptEventTestCase.bpmn.xml │ └── BpmnInlineScriptEventTestCase.cs ├── Parser │ ├── BpmnParserUnitTest.cs │ ├── ExtendedAttributeParseTestCase.cs │ └── ExtendedAttributes.bpmn.xml ├── ProcessEngineBuilderUnitTest.cs ├── Resources │ ├── Event │ │ └── MessageStartEventTest.testSingleMessageStartEvent.bpmn20.xml │ ├── Gateway │ │ ├── ExclusiveGatewayTest.testDefaultSequenceFlow.bpmn20.xml │ │ ├── ParallelGatewayTest.testNestedForkJoin.bpmn20.xml │ │ └── ParallelGatewayTest.testNestedForkJoin.svg │ ├── MultiInstance │ │ ├── MultiInstanceTest.testParallelScriptTasks.bpmn20.xml │ │ ├── MultiInstanceTest.testSequentialScriptTasks.bpmn20.xml │ │ ├── MultiInstanceTest.testSequentialScriptTasksCompletionCondition.bpmn20.xml │ │ ├── MultiInstanceTest.testSequentialSubProcess.bpmn20.xml │ │ ├── MultiInstanceTest.testSequentialSubProcessCompletionCondition.bpmn20.xml │ │ ├── MultiInstanceTest.testSequentialSubprocessEmptyCollection.bpmn20.xml │ │ └── MultiInstanceTest.testSequentialUserTasksEmptyCollection.bpmn20.xml │ ├── ScriptTask │ │ └── JavascriptTest.testSetVariableThroughExecutionInScript.bpmn20.xml │ ├── SubProcess │ │ ├── SubProcessTest.testDataObjectScope.bpmn20.xml │ │ ├── SubProcessTest.testNestedSimpleSubProcess.bpmn20.xml │ │ └── SubProcessTest.testNestedSimpleSubProcess.png │ ├── data_association.bpmn.xml │ ├── exclusive_gateway.bpmn.xml │ ├── sequential_flow.bpmn.xml │ └── sub_process.bpmn.xml ├── Scripting │ └── JavascriptTestCase.cs ├── XUnitLoggerProvider.cs └── XUnitSqlCaptureInterceptor.cs ├── Bpmtk.Engine.WebApi ├── ApplicationBuilderExtensions.cs ├── Bpmtk.Engine.WebApi.csproj ├── Bpmtk.Engine.WebApi.csproj.user ├── Controllers │ ├── DeploymentController.cs │ ├── PackageController.cs │ ├── ProcessDefinitionController.cs │ ├── ProcessInstanceController.cs │ └── TaskInstanceController.cs ├── Models │ ├── ActivityInstanceModel.cs │ ├── CompleteTaskModel.cs │ ├── DeployBpmnModel.cs │ ├── DeploymentFilter.cs │ ├── DeploymentModel.cs │ ├── IdentityLinkModel.cs │ ├── PackageFilter.cs │ ├── PackageModel.cs │ ├── PagedResult.cs │ ├── ProcessDefinitionActionModel.cs │ ├── ProcessDefinitionFilter.cs │ ├── ProcessDefinitionModel.cs │ ├── ProcessInstanceFilter.cs │ ├── ProcessInstanceModel.cs │ ├── TaskInstanceFilter.cs │ └── TaskInstanceModel.cs ├── PerRequestContextFactory.cs ├── ProcessEngineExtensions.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── nhibernate.cfg.xml ├── Bpmtk.Engine ├── Bpmn2 │ ├── Behaviors │ │ ├── ActivityBehavior.cs │ │ ├── AdHocSubProcessActivityBehavior.cs │ │ ├── BusinessRuleTaskActivityBehavior.cs │ │ ├── CallActivityBehavior.cs │ │ ├── ComplexGatewayActivityBehavior.cs │ │ ├── EndEventActivityBehavior.cs │ │ ├── EventBasedGatewayActivityBehavior.cs │ │ ├── ExclusiveGatewayActivityBehavior.cs │ │ ├── FlowNodeActivityBehavior.cs │ │ ├── GatewayActivityBehavior.cs │ │ ├── IActivityBehavior.cs │ │ ├── IFlowNodeActivityBehavior.cs │ │ ├── ILoopActivityBehavior.cs │ │ ├── ISignallableActivityBehavior.cs │ │ ├── InclusiveGatewayActivityBehavior.cs │ │ ├── LoopActivityBehavior.cs │ │ ├── ManualTaskActivityBehavior.cs │ │ ├── MultiInstanceActivityBehavior.cs │ │ ├── ParallelGatewayActivityBehavior.cs │ │ ├── ParallelMultiInstanceActivityBehavior.cs │ │ ├── ReceiveTaskActivityBehavior.cs │ │ ├── ScriptTaskActivityBehavior.cs │ │ ├── SendTaskActivityBehavior.cs │ │ ├── SequentialMultiInstanceActivityBehavior.cs │ │ ├── ServiceTaskActivityBehavior.cs │ │ ├── StandardLoopActivityBehavior.cs │ │ ├── StartEventActivityBehavior.cs │ │ ├── SubProcessActivityBehavior.cs │ │ ├── TaskActivityBehavior.cs │ │ ├── TransactionActivityBehavior.cs │ │ └── UserTaskActivityBehavior.cs │ ├── BpmnError.cs │ ├── BpmnException.cs │ ├── BpmnModel.cs │ ├── BpmnModelHelper.cs │ ├── Parser │ │ ├── BaseElementParseHandler.cs │ │ ├── BpmnFactory.cs │ │ ├── BpmnParseContext.cs │ │ ├── BpmnParser.cs │ │ ├── BpmnParserResults.cs │ │ ├── DefinitionsParseHandler.cs │ │ ├── FlowElementScope.cs │ │ ├── Handlers │ │ │ ├── ActivityParseHandler.cs │ │ │ ├── ArtifactParseHandler.cs │ │ │ ├── BPMNDiagramParseHandler.cs │ │ │ ├── CallActivityParseHandler.cs │ │ │ ├── CallableElementParseHandler.cs │ │ │ ├── DataAssociationParseHandler.cs │ │ │ ├── DataObjectParseHandler.cs │ │ │ ├── EventDefinitionParseHandler.cs │ │ │ ├── EventParseHandler.cs │ │ │ ├── ExpressionParseHandler.cs │ │ │ ├── ExtensionElementsParseHandler.cs │ │ │ ├── FlowElementParseHandler.cs │ │ │ ├── GatewayParseHandler.cs │ │ │ ├── IOSpecificationParseHandler.cs │ │ │ ├── ProcessParseHandler.cs │ │ │ ├── PropertyParseHandler.cs │ │ │ ├── ResourceParseHandler.cs │ │ │ ├── ResourceRoleParseHandler.cs │ │ │ ├── RootElementHandler.cs │ │ │ ├── SequenceFlowParseHandler.cs │ │ │ ├── SubProcessParseHandler.cs │ │ │ └── TaskParseHandler.cs │ │ ├── Helper.cs │ │ ├── IParseContext.cs │ │ ├── IParseHandler.cs │ │ └── XElementExtensions.cs │ ├── Schema │ │ ├── BPMN20.xsd │ │ ├── BPMNDI.xsd │ │ ├── DC.xsd │ │ ├── DI.xsd │ │ ├── Extensions.xsd │ │ └── Semantic.xsd │ ├── Types │ │ ├── BpmnTypes.cs │ │ ├── ComplexTypeHandler.cs │ │ ├── DateTypeHandler.cs │ │ ├── ITypeHandler.cs │ │ ├── StringTypeHandler.cs │ │ └── XsdTypes.cs │ └── ValuedDataObject.cs ├── Bpmtk.Engine.csproj ├── Bpmtk.Engine.csproj.user ├── ContextNotBindException.cs ├── EngineException.cs ├── Events │ ├── CompositeProcessEventListener.cs │ ├── CompositeTaskEventListener.cs │ ├── IEventSubscriptionQuery.cs │ ├── IEventSubscriptionStore.cs │ ├── IMessageStartEventHandler.cs │ ├── IProcessEventListener.cs │ ├── ITaskEventListener.cs │ ├── Internal │ │ └── MessageStartEventHandler.cs │ └── TaskEventListener.cs ├── History │ ├── ActivityInstanceQuery.cs │ ├── HistoryManager.cs │ └── IActivityInstanceQuery.cs ├── IContext.cs ├── IContextFactory.cs ├── IDeploymentManager.cs ├── IHistoryManager.cs ├── IIdentityManager.cs ├── IPackageManager.cs ├── IProcessEngine.cs ├── IProcessEngineBuilder.cs ├── IRuntimeManager.cs ├── IScheduledJobManager.cs ├── ITaskManager.cs ├── Identity │ └── IdentityManager.cs ├── Internal │ ├── Context.cs │ └── ProcessEngine.cs ├── Models │ ├── ActivityInstance.cs │ ├── ActivityVariable.cs │ ├── ByteArray.cs │ ├── Comment.cs │ ├── Deployment.cs │ ├── EventSubscription.cs │ ├── ExecutionObject.cs │ ├── Group.cs │ ├── HistoricModel.cs │ ├── HistoricPackageItem.cs │ ├── HistoricToken.cs │ ├── IdentityLink.cs │ ├── Package.cs │ ├── PackageItem.cs │ ├── ProcessDefinition.cs │ ├── ProcessInstance.cs │ ├── ScheduledJob.cs │ ├── TaskInstance.cs │ ├── Token.cs │ ├── User.cs │ ├── UserGroup.cs │ └── Variable.cs ├── ObjectNotFoundException.cs ├── ProcessEngineBuilder.cs ├── ProcessEngineOptions.cs ├── Repository │ ├── DeploymentBuilder.cs │ ├── DeploymentException.cs │ ├── DeploymentManager.cs │ ├── DeploymentQuery.cs │ ├── IDeployment.cs │ ├── IDeploymentBuilder.cs │ ├── IDeploymentQuery.cs │ ├── IPackage.cs │ ├── IPackageQuery.cs │ ├── IProcessDefinition.cs │ ├── IProcessDefinitionQuery.cs │ ├── PackageManager.cs │ └── ProcessDefinitionQuery.cs ├── Runtime │ ├── ExecutionContext.cs │ ├── ExecutionContextManager.cs │ ├── IExecutionContext.cs │ ├── IExecutionObject.cs │ ├── IProcessInstance.cs │ ├── IProcessInstanceBuilder.cs │ ├── IProcessInstanceQuery.cs │ ├── IToken.cs │ ├── Internal │ │ ├── JavascriptEvalutor.cs │ │ └── ScriptingContext.cs │ ├── ProcessInstanceBuilder.cs │ ├── ProcessInstanceQuery.cs │ ├── Rules.cs │ ├── RuntimeException.cs │ └── RuntimeManager.cs ├── Scheduler │ ├── IScheduledJobHandler.cs │ ├── IScheduledJobStore.cs │ ├── QuartzSchedulerJobHandler.cs │ ├── ScheduledJobManager.cs │ └── TimerStartEventJobHandler.cs ├── Scripting │ ├── IEvaluator.cs │ ├── IScriptEngine.cs │ ├── IScriptEngineManager.cs │ ├── IScriptingScope.cs │ ├── IVariableResolver.cs │ ├── JavascriptEngine.cs │ ├── JavascriptReferenceResolver.cs │ ├── JavascriptScope.cs │ ├── ScriptingEngines.cs │ └── ScriptingException.cs ├── StateTransitionNotAllowedException.cs ├── Storage │ ├── IDbSession.cs │ └── ITransaction.cs ├── Tasks │ ├── AssignmentStrategyEntry.cs │ ├── DelegationState.cs │ ├── IAssignmentStrategy.cs │ ├── IHumanTaskHandler.cs │ ├── ITaskEventContext.cs │ ├── ITaskInstance.cs │ ├── ITaskInstanceBuilder.cs │ ├── ITaskQuery.cs │ ├── IUserTaskImplementor.cs │ ├── TaskEvent.cs │ ├── TaskInstanceBuilder.cs │ ├── TaskManager.cs │ └── TaskQuery.cs ├── Utils │ ├── Clock.cs │ ├── StringHelper.cs │ └── TypeHelper.cs └── Variables │ ├── BooleanType.cs │ ├── ByteArrayType.cs │ ├── DateType.cs │ ├── DoubleType.cs │ ├── GuidType.cs │ ├── IValueFields.cs │ ├── IVariable.cs │ ├── IVariableScope.cs │ ├── IVariableType.cs │ ├── IntegerType.cs │ ├── JsonType.cs │ ├── ListType.cs │ ├── LongType.cs │ ├── NullType.cs │ ├── SerializableType.cs │ ├── StringType.cs │ └── VariableType.cs ├── Bpmtk.sln ├── ConsoleApp ├── Assert.cs ├── BpmDesignTimeDbContextFactory.cs ├── ConsoleApp.csproj ├── DemoProcessEventListener.cs ├── DemoTaskEventListener.cs ├── Program.cs └── resources │ ├── ParallelGatewayTest.testNestedForkJoin.bpmn20.xml │ └── ParallelGatewayTest.testNestedForkJoin.svg └── MysqlConsoleApp ├── BpmDesignTimeDbContextFactory.cs ├── Migrations ├── 20190508154614_Initial.Designer.cs ├── 20190508154614_Initial.cs └── ApplicationDbContextModelSnapshot.cs ├── MysqlConsoleApp.csproj ├── Program.cs └── bin └── Debug └── netcoreapp2.1 ├── Bpmtk.Bpmn2.dll ├── Bpmtk.Bpmn2.pdb ├── Bpmtk.Engine.EntityFrameworkCore.dll ├── Bpmtk.Engine.EntityFrameworkCore.pdb ├── Bpmtk.Engine.dll ├── Bpmtk.Engine.pdb ├── MysqlConsoleApp.deps.json ├── MysqlConsoleApp.dll ├── MysqlConsoleApp.pdb ├── MysqlConsoleApp.runtimeconfig.dev.json └── MysqlConsoleApp.runtimeconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /db/mysql/bpmtk_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/db/mysql/bpmtk_init.sql -------------------------------------------------------------------------------- /db/mysql/bpmtk_init_with_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/db/mysql/bpmtk_init_with_data.sql -------------------------------------------------------------------------------- /documentation/formal-11-01-03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/documentation/formal-11-01-03.pdf -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Bpmtk.Bpmn2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Bpmtk.Bpmn2.csproj -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Bpmtk.Bpmn2.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Bpmtk.Bpmn2.csproj.user -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Choreographies/CallChoreography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Choreographies/CallChoreography.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Choreographies/Choreography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Choreographies/Choreography.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Choreographies/ChoreographyActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Choreographies/ChoreographyActivity.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Choreographies/ChoreographyLoopType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Choreographies/ChoreographyLoopType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Choreographies/ChoreographyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Choreographies/ChoreographyTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Choreographies/GlobalChoreographyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Choreographies/GlobalChoreographyTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Choreographies/SubChoreography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Choreographies/SubChoreography.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/Collaboration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/Collaboration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/ConversationAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/ConversationAssociation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/ConversationLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/ConversationLink.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/ConversationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/ConversationNode.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/LaneSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/LaneSet.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/MessageFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/MessageFlow.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/MessageFlowAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/MessageFlowAssociation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/Participant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/Participant.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Collaboration/ParticipantAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Collaboration/ParticipantAssociation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Artifact.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/CatchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/CatchEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/DataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/DataStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Error.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Event.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/EventDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/EventDefinition.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Expression.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/FlowElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/FlowElement.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Gateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Gateway.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/IFlowElementsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/IFlowElementsContainer.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/ItemDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/ItemDefinition.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Message.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Rendering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Rendering.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Resource.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/Signal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/Signal.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Common/ThrowEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Common/ThrowEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DC/Bounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DC/Bounds.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DC/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DC/Font.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DC/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DC/Point.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/BPMNDiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/BPMNDiagram.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/BPMNEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/BPMNEdge.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/BPMNLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/BPMNLabel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/BPMNLabelStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/BPMNLabelStyle.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/BPMNPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/BPMNPlane.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/BPMNShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/BPMNShape.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/Diagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/Diagram.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/DiagramElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/DiagramElement.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/Edge.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/ILabeled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/ILabeled.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/Label.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/LabeledEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/LabeledEdge.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/LabeledShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/LabeledShape.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/MessageVisibleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/MessageVisibleKind.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/Node.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/ParticipantBandKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/ParticipantBandKind.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/Plane.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/Shape.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/DI/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/DI/Style.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Extensions/EventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Extensions/EventListener.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Extensions/ExtendedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Extensions/ExtendedAttribute.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Extensions/FormField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Extensions/FormField.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Extensions/IScriptEnabledElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Extensions/IScriptEnabledElement.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Extensions/ResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Extensions/ResourceType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Extensions/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Extensions/Script.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Extensions/TaskPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Extensions/TaskPriority.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Foundation/BaseElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Foundation/BaseElement.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Foundation/BaseElementWithMixedContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Foundation/BaseElementWithMixedContent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Foundation/Documentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Foundation/Documentation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Foundation/ExtensionElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Foundation/ExtensionElements.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Foundation/RootElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Foundation/RootElement.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/IFlowNodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/IFlowNodeVisitor.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Infrastructure/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Infrastructure/Definitions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Infrastructure/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Infrastructure/Import.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/Activity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/Activity.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/AdHocSubProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/AdHocSubProcess.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/BusinessRuleTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/BusinessRuleTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/CallActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/CallActivity.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/GlobalManualTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/GlobalManualTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/GlobalScriptTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/GlobalScriptTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/GlobalTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/GlobalTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/GlobalUserTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/GlobalUserTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/LoopCharacteristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/LoopCharacteristics.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/ManualTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/ManualTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/MultiInstanceLoopCharacteristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/MultiInstanceLoopCharacteristics.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/ReceiveTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/ReceiveTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/ScriptTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/ScriptTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/SendTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/SendTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/ServiceTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/ServiceTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/StandardLoopCharacteristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/StandardLoopCharacteristics.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/SubProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/SubProcess.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/Task.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/Transaction.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Activities/UserTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Activities/UserTask.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/CallableElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/CallableElement.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/Assignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/Assignment.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataAssociation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataInput.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataInputAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataInputAssociation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataObject.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataObjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataObjectReference.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataOutput.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataOutputAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataOutputAssociation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/DataState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/DataState.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/IItemAwareElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/IItemAwareElement.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/InputOutputSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/InputOutputSpecification.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/InputSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/InputSet.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/OutputSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/OutputSet.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Data/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Data/Property.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Events/BoundaryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Events/BoundaryEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Events/EndEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Events/EndEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Events/ImplicitThrowEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Events/ImplicitThrowEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Events/IntermediateCatchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Events/IntermediateCatchEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Events/IntermediateThrowEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Events/IntermediateThrowEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Events/StartEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Events/StartEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/FlowElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/FlowElementCollection.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/FlowNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/FlowNode.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Gateways/ComplexGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Gateways/ComplexGateway.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Gateways/EventBasedGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Gateways/EventBasedGateway.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Gateways/ExclusiveGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Gateways/ExclusiveGateway.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Gateways/InclusiveGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Gateways/InclusiveGateway.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Gateways/ParallelGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Gateways/ParallelGateway.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/Process.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/ResourceRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/ResourceRole.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Process/SequenceFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Process/SequenceFlow.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Schema/BPMN20.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Schema/BPMN20.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Schema/BPMNDI.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Schema/BPMNDI.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Schema/DC.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Schema/DC.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Schema/DI.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Schema/DI.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Schema/Extensions.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Schema/Extensions.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Schema/Semantic.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Schema/Semantic.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Services/EndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Services/EndPoint.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Services/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Services/Interface.cs -------------------------------------------------------------------------------- /src/Bpmtk.Bpmn2/Services/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Bpmn2/Services/Operation.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/BpmDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/BpmDbContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Bpmtk.Engine.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Bpmtk.Engine.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Bpmtk.Engine.EntityFrameworkCore.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Bpmtk.Engine.EntityFrameworkCore.csproj.user -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/ActivityInstanceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/ActivityInstanceConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/ActivityVariableConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/ActivityVariableConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/ByteArrayConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/ByteArrayConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/CommentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/CommentConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/Consts.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/DefaultNamingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/DefaultNamingStrategy.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/DeploymentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/DeploymentConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/EntityTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/EntityTypeConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/EventSubscriptionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/EventSubscriptionConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/GroupConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/GroupConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/HistoricModelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/HistoricModelConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/HistoricPackageItemConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/HistoricPackageItemConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/IEntityTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/IEntityTypeConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/INamingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/INamingStrategy.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/IdentityLinkConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/IdentityLinkConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/PackageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/PackageConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/PackageItemConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/PackageItemConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/ProcessDefinitionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/ProcessDefinitionConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/ProcessInstanceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/ProcessInstanceConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/ScheduledJobConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/ScheduledJobConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/TaskConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/TaskConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/TokenConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/TokenConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/UserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/UserConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/UserGroupConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/UserGroupConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/Builders/VariableConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/Builders/VariableConfiguration.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/ContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/ContextFactory.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/ContextTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/ContextTransaction.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/DbSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/DbSession.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/IBpmDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/IBpmDbContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.EntityFrameworkCore/ModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.EntityFrameworkCore/ModelBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Bpmtk.Engine.Hibernate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Bpmtk.Engine.Hibernate.csproj -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Cfg/NamingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Cfg/NamingStrategy.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/DeploymentStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/DeploymentStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/EventSubscriptionStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/EventSubscriptionStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/HibernateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/HibernateExtensions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/HibernateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/HibernateOptions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/IdentityStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/IdentityStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/InstanceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/InstanceStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Internal/ActivityInstanceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Internal/ActivityInstanceQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Internal/TaskQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Internal/TaskQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Internal/TokenQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Internal/TokenQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/ActivityInstance.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/ActivityInstance.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/ActivityVariable.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/ActivityVariable.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/ByteArray.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/ByteArray.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/Deployment.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/Deployment.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/EventSubscription.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/EventSubscription.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/Group.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/Group.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/HistoricToken.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/HistoricToken.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/IdentityLink.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/IdentityLink.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/Package.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/Package.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/ProcessDefinition.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/ProcessDefinition.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/ProcessInstance.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/ProcessInstance.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/ProcessVariable.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/ProcessVariable.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/ScheduledJob.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/ScheduledJob.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/TaskInstance.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/TaskInstance.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/Token.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/Token.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/User.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/User.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/Mappings/Variable.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/Mappings/Variable.hbm.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/ScheduledJobStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/ScheduledJobStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/TaskStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/TaskStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/UnitOfWork.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Hibernate/nhibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Hibernate/nhibernate.cfg.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/APIs/RuntimeManagerTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/APIs/RuntimeManagerTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/APIs/TaskManagerTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/APIs/TaskManagerTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/Event/SingleMessageStartEventTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/Event/SingleMessageStartEventTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/Gateway/ExclusiveGatewayTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/Gateway/ExclusiveGatewayTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/Gateway/NestedForkJoinTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/Gateway/NestedForkJoinTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/ParallelScriptTasksTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/ParallelScriptTasksTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialScriptTasksCompletionConditionTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialScriptTasksCompletionConditionTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialScriptTasksTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialScriptTasksTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialSubProcessEmptyCollectionTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialSubProcessEmptyCollectionTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialSubProcessTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialSubProcessTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialSubprocessCompletionConditionTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialSubprocessCompletionConditionTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialUserTasksEmptyCollectionTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/MultiInstance/SequentialUserTasksEmptyCollectionTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/Process/DataObjectScopeTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/Process/DataObjectScopeTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/Process/NestedSubProcessTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/Process/NestedSubProcessTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/UserTask/AssignTaskByVariableTestCase.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/UserTask/AssignTaskByVariableTestCase.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmn/UserTask/AssignTaskByVariableTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmn/UserTask/AssignTaskByVariableTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmtk.Engine.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmtk.Engine.Tests.csproj -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Bpmtk.Engine.Tests.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Bpmtk.Engine.Tests.csproj.user -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/BpmtkTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/BpmtkTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Deploy/CreateInstanceIdentityLinkTestCase.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Deploy/CreateInstanceIdentityLinkTestCase.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Deploy/IdentityLinkTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Deploy/IdentityLinkTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Event/BpmnInlineScriptEventTestCase.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Event/BpmnInlineScriptEventTestCase.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Event/BpmnInlineScriptEventTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Event/BpmnInlineScriptEventTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Parser/BpmnParserUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Parser/BpmnParserUnitTest.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Parser/ExtendedAttributeParseTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Parser/ExtendedAttributeParseTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Parser/ExtendedAttributes.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Parser/ExtendedAttributes.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/ProcessEngineBuilderUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/ProcessEngineBuilderUnitTest.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/Event/MessageStartEventTest.testSingleMessageStartEvent.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/Event/MessageStartEventTest.testSingleMessageStartEvent.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/Gateway/ExclusiveGatewayTest.testDefaultSequenceFlow.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/Gateway/ExclusiveGatewayTest.testDefaultSequenceFlow.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/Gateway/ParallelGatewayTest.testNestedForkJoin.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/Gateway/ParallelGatewayTest.testNestedForkJoin.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/Gateway/ParallelGatewayTest.testNestedForkJoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/Gateway/ParallelGatewayTest.testNestedForkJoin.svg -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testParallelScriptTasks.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testParallelScriptTasks.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialScriptTasks.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialScriptTasks.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialScriptTasksCompletionCondition.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialScriptTasksCompletionCondition.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialSubProcess.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialSubProcess.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialSubProcessCompletionCondition.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialSubProcessCompletionCondition.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialSubprocessEmptyCollection.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialSubprocessEmptyCollection.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialUserTasksEmptyCollection.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/MultiInstance/MultiInstanceTest.testSequentialUserTasksEmptyCollection.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/ScriptTask/JavascriptTest.testSetVariableThroughExecutionInScript.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/ScriptTask/JavascriptTest.testSetVariableThroughExecutionInScript.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/SubProcess/SubProcessTest.testDataObjectScope.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/SubProcess/SubProcessTest.testDataObjectScope.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/SubProcess/SubProcessTest.testNestedSimpleSubProcess.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/SubProcess/SubProcessTest.testNestedSimpleSubProcess.bpmn20.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/SubProcess/SubProcessTest.testNestedSimpleSubProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/SubProcess/SubProcessTest.testNestedSimpleSubProcess.png -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/data_association.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/data_association.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/exclusive_gateway.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/exclusive_gateway.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/sequential_flow.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/sequential_flow.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Resources/sub_process.bpmn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Resources/sub_process.bpmn.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/Scripting/JavascriptTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/Scripting/JavascriptTestCase.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/XUnitLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/XUnitLoggerProvider.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.Tests/XUnitSqlCaptureInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.Tests/XUnitSqlCaptureInterceptor.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Bpmtk.Engine.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Bpmtk.Engine.WebApi.csproj -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Bpmtk.Engine.WebApi.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Bpmtk.Engine.WebApi.csproj.user -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Controllers/DeploymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Controllers/DeploymentController.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Controllers/PackageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Controllers/PackageController.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Controllers/ProcessDefinitionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Controllers/ProcessDefinitionController.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Controllers/ProcessInstanceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Controllers/ProcessInstanceController.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Controllers/TaskInstanceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Controllers/TaskInstanceController.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/ActivityInstanceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/ActivityInstanceModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/CompleteTaskModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/CompleteTaskModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/DeployBpmnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/DeployBpmnModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/DeploymentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/DeploymentFilter.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/DeploymentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/DeploymentModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/IdentityLinkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/IdentityLinkModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/PackageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/PackageFilter.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/PackageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/PackageModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/PagedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/PagedResult.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/ProcessDefinitionActionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/ProcessDefinitionActionModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/ProcessDefinitionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/ProcessDefinitionFilter.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/ProcessDefinitionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/ProcessDefinitionModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/ProcessInstanceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/ProcessInstanceFilter.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/ProcessInstanceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/ProcessInstanceModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/TaskInstanceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/TaskInstanceFilter.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Models/TaskInstanceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Models/TaskInstanceModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/PerRequestContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/PerRequestContextFactory.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/ProcessEngineExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/ProcessEngineExtensions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Program.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/Startup.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/appsettings.json -------------------------------------------------------------------------------- /src/Bpmtk.Engine.WebApi/nhibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine.WebApi/nhibernate.cfg.xml -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/AdHocSubProcessActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/AdHocSubProcessActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/BusinessRuleTaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/BusinessRuleTaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/CallActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/CallActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ComplexGatewayActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ComplexGatewayActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/EndEventActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/EndEventActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/EventBasedGatewayActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/EventBasedGatewayActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ExclusiveGatewayActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ExclusiveGatewayActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/FlowNodeActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/FlowNodeActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/GatewayActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/GatewayActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/IActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/IActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/IFlowNodeActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/IFlowNodeActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ILoopActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ILoopActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ISignallableActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ISignallableActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/InclusiveGatewayActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/InclusiveGatewayActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/LoopActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/LoopActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ManualTaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ManualTaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/MultiInstanceActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/MultiInstanceActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ParallelGatewayActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ParallelGatewayActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ParallelMultiInstanceActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ParallelMultiInstanceActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ReceiveTaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ReceiveTaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ScriptTaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ScriptTaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/SendTaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/SendTaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/SequentialMultiInstanceActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/SequentialMultiInstanceActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/ServiceTaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/ServiceTaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/StandardLoopActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/StandardLoopActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/StartEventActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/StartEventActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/SubProcessActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/SubProcessActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/TaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/TaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/TransactionActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/TransactionActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Behaviors/UserTaskActivityBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Behaviors/UserTaskActivityBehavior.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/BpmnError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/BpmnError.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/BpmnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/BpmnException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/BpmnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/BpmnModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/BpmnModelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/BpmnModelHelper.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/BaseElementParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/BaseElementParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/BpmnFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/BpmnFactory.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/BpmnParseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/BpmnParseContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/BpmnParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/BpmnParser.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/BpmnParserResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/BpmnParserResults.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/DefinitionsParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/DefinitionsParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/FlowElementScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/FlowElementScope.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ActivityParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ActivityParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ArtifactParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ArtifactParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/BPMNDiagramParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/BPMNDiagramParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/CallActivityParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/CallActivityParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/CallableElementParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/CallableElementParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/DataAssociationParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/DataAssociationParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/DataObjectParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/DataObjectParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/EventDefinitionParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/EventDefinitionParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/EventParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/EventParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ExpressionParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ExpressionParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ExtensionElementsParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ExtensionElementsParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/FlowElementParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/FlowElementParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/GatewayParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/GatewayParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/IOSpecificationParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/IOSpecificationParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ProcessParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ProcessParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/PropertyParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/PropertyParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ResourceParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ResourceParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ResourceRoleParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/ResourceRoleParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/RootElementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/RootElementHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/SequenceFlowParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/SequenceFlowParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/SubProcessParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/SubProcessParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Handlers/TaskParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Handlers/TaskParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/Helper.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/IParseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/IParseContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/IParseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/IParseHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Parser/XElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Parser/XElementExtensions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Schema/BPMN20.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Schema/BPMN20.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Schema/BPMNDI.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Schema/BPMNDI.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Schema/DC.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Schema/DC.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Schema/DI.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Schema/DI.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Schema/Extensions.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Schema/Extensions.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Schema/Semantic.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Schema/Semantic.xsd -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Types/BpmnTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Types/BpmnTypes.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Types/ComplexTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Types/ComplexTypeHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Types/DateTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Types/DateTypeHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Types/ITypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Types/ITypeHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Types/StringTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Types/StringTypeHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/Types/XsdTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/Types/XsdTypes.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmn2/ValuedDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmn2/ValuedDataObject.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmtk.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmtk.Engine.csproj -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Bpmtk.Engine.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Bpmtk.Engine.csproj.user -------------------------------------------------------------------------------- /src/Bpmtk.Engine/ContextNotBindException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/ContextNotBindException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/EngineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/EngineException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/CompositeProcessEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/CompositeProcessEventListener.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/CompositeTaskEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/CompositeTaskEventListener.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/IEventSubscriptionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/IEventSubscriptionQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/IEventSubscriptionStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/IEventSubscriptionStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/IMessageStartEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/IMessageStartEventHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/IProcessEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/IProcessEventListener.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/ITaskEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/ITaskEventListener.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/Internal/MessageStartEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/Internal/MessageStartEventHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Events/TaskEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Events/TaskEventListener.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/History/ActivityInstanceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/History/ActivityInstanceQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/History/HistoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/History/HistoryManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/History/IActivityInstanceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/History/IActivityInstanceQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IContextFactory.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IDeploymentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IDeploymentManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IHistoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IHistoryManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IIdentityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IIdentityManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IPackageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IPackageManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IProcessEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IProcessEngine.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IProcessEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IProcessEngineBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IRuntimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IRuntimeManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/IScheduledJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/IScheduledJobManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/ITaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/ITaskManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Identity/IdentityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Identity/IdentityManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Internal/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Internal/Context.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Internal/ProcessEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Internal/ProcessEngine.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/ActivityInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/ActivityInstance.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/ActivityVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/ActivityVariable.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/ByteArray.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/Comment.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/Deployment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/Deployment.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/EventSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/EventSubscription.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/ExecutionObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/ExecutionObject.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/Group.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/HistoricModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/HistoricModel.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/HistoricPackageItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/HistoricPackageItem.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/HistoricToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/HistoricToken.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/IdentityLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/IdentityLink.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/Package.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/PackageItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/PackageItem.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/ProcessDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/ProcessDefinition.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/ProcessInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/ProcessInstance.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/ScheduledJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/ScheduledJob.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/TaskInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/TaskInstance.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/Token.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/User.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/UserGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/UserGroup.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Models/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Models/Variable.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/ObjectNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/ObjectNotFoundException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/ProcessEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/ProcessEngineBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/ProcessEngineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/ProcessEngineOptions.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/DeploymentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/DeploymentBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/DeploymentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/DeploymentException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/DeploymentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/DeploymentManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/DeploymentQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/DeploymentQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/IDeployment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/IDeployment.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/IDeploymentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/IDeploymentBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/IDeploymentQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/IDeploymentQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/IPackage.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/IPackageQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/IPackageQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/IProcessDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/IProcessDefinition.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/IProcessDefinitionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/IProcessDefinitionQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/PackageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/PackageManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Repository/ProcessDefinitionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Repository/ProcessDefinitionQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/ExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/ExecutionContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/ExecutionContextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/ExecutionContextManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/IExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/IExecutionContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/IExecutionObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/IExecutionObject.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/IProcessInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/IProcessInstance.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/IProcessInstanceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/IProcessInstanceBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/IProcessInstanceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/IProcessInstanceQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/IToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/IToken.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/Internal/JavascriptEvalutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/Internal/JavascriptEvalutor.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/Internal/ScriptingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/Internal/ScriptingContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/ProcessInstanceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/ProcessInstanceBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/ProcessInstanceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/ProcessInstanceQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/Rules.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/RuntimeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/RuntimeException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Runtime/RuntimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Runtime/RuntimeManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scheduler/IScheduledJobHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scheduler/IScheduledJobHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scheduler/IScheduledJobStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scheduler/IScheduledJobStore.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scheduler/QuartzSchedulerJobHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scheduler/QuartzSchedulerJobHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scheduler/ScheduledJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scheduler/ScheduledJobManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scheduler/TimerStartEventJobHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scheduler/TimerStartEventJobHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/IEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/IEvaluator.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/IScriptEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/IScriptEngine.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/IScriptEngineManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/IScriptEngineManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/IScriptingScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/IScriptingScope.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/IVariableResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/IVariableResolver.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/JavascriptEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/JavascriptEngine.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/JavascriptReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/JavascriptReferenceResolver.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/JavascriptScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/JavascriptScope.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/ScriptingEngines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/ScriptingEngines.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Scripting/ScriptingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Scripting/ScriptingException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/StateTransitionNotAllowedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/StateTransitionNotAllowedException.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Storage/IDbSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Storage/IDbSession.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Storage/ITransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Storage/ITransaction.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/AssignmentStrategyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/AssignmentStrategyEntry.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/DelegationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/DelegationState.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/IAssignmentStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/IAssignmentStrategy.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/IHumanTaskHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/IHumanTaskHandler.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/ITaskEventContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/ITaskEventContext.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/ITaskInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/ITaskInstance.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/ITaskInstanceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/ITaskInstanceBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/ITaskQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/ITaskQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/IUserTaskImplementor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/IUserTaskImplementor.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/TaskEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/TaskEvent.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/TaskInstanceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/TaskInstanceBuilder.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/TaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/TaskManager.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Tasks/TaskQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Tasks/TaskQuery.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Utils/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Utils/Clock.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Utils/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Utils/StringHelper.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Utils/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Utils/TypeHelper.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/BooleanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/BooleanType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/ByteArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/ByteArrayType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/DateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/DateType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/DoubleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/DoubleType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/GuidType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/GuidType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/IValueFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/IValueFields.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/IVariable.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/IVariableScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/IVariableScope.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/IVariableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/IVariableType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/IntegerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/IntegerType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/JsonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/JsonType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/ListType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/ListType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/LongType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/LongType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/NullType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/NullType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/SerializableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/SerializableType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/StringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/StringType.cs -------------------------------------------------------------------------------- /src/Bpmtk.Engine/Variables/VariableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.Engine/Variables/VariableType.cs -------------------------------------------------------------------------------- /src/Bpmtk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/Bpmtk.sln -------------------------------------------------------------------------------- /src/ConsoleApp/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/Assert.cs -------------------------------------------------------------------------------- /src/ConsoleApp/BpmDesignTimeDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/BpmDesignTimeDbContextFactory.cs -------------------------------------------------------------------------------- /src/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /src/ConsoleApp/DemoProcessEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/DemoProcessEventListener.cs -------------------------------------------------------------------------------- /src/ConsoleApp/DemoTaskEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/DemoTaskEventListener.cs -------------------------------------------------------------------------------- /src/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/Program.cs -------------------------------------------------------------------------------- /src/ConsoleApp/resources/ParallelGatewayTest.testNestedForkJoin.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/resources/ParallelGatewayTest.testNestedForkJoin.bpmn20.xml -------------------------------------------------------------------------------- /src/ConsoleApp/resources/ParallelGatewayTest.testNestedForkJoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/ConsoleApp/resources/ParallelGatewayTest.testNestedForkJoin.svg -------------------------------------------------------------------------------- /src/MysqlConsoleApp/BpmDesignTimeDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/BpmDesignTimeDbContextFactory.cs -------------------------------------------------------------------------------- /src/MysqlConsoleApp/Migrations/20190508154614_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/Migrations/20190508154614_Initial.Designer.cs -------------------------------------------------------------------------------- /src/MysqlConsoleApp/Migrations/20190508154614_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/Migrations/20190508154614_Initial.cs -------------------------------------------------------------------------------- /src/MysqlConsoleApp/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/MysqlConsoleApp/MysqlConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/MysqlConsoleApp.csproj -------------------------------------------------------------------------------- /src/MysqlConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/Program.cs -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Bpmn2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Bpmn2.dll -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Bpmn2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Bpmn2.pdb -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.EntityFrameworkCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.EntityFrameworkCore.pdb -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.dll -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/Bpmtk.Engine.pdb -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.deps.json -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.dll -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.pdb -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.runtimeconfig.dev.json -------------------------------------------------------------------------------- /src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifl/bpmtk/HEAD/src/MysqlConsoleApp/bin/Debug/netcoreapp2.1/MysqlConsoleApp.runtimeconfig.json --------------------------------------------------------------------------------