-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ticket #166: Can Display BPMN workflow file
- Loading branch information
Showing
32 changed files
with
795 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...site/SimpleIdServer.Website/src/app/stores/workflows/models/activitystatehistory.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
export class ActivityStateHistory { | ||
state: string; | ||
executionDateTime: Date; | ||
message: string; | ||
} |
4 changes: 4 additions & 0 deletions
4
src/Website/SimpleIdServer.Website/src/app/stores/workflows/models/messagetoken.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export class MessageToken { | ||
name: string; | ||
content: any; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/Website/SimpleIdServer.Website/src/app/stores/workflows/models/nodeinstance.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { ActivityStateHistory } from "./activitystatehistory.model"; | ||
|
||
export class NodeInstance { | ||
constructor() { | ||
this.activityStates = []; | ||
} | ||
|
||
id: string; | ||
flowNodeId: string; | ||
state: string; | ||
activityState: string; | ||
metadata: any; | ||
activityStates: ActivityStateHistory[]; | ||
} |
8 changes: 8 additions & 0 deletions
8
...te/SimpleIdServer.Website/src/app/stores/workflows/models/searchworkflowinstance.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { WorkflowInstance } from "./workflowinstance.model"; | ||
|
||
export class SearchWorkflowInstanceResult { | ||
startIndex: number; | ||
totalLength: number; | ||
count: number; | ||
content: WorkflowInstance[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...eIdServer.Website/src/app/stores/workflows/models/workflowinstance-executionpath.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { WorkflowInstanceExecutionPointer } from "./workflowinstance-executionpointer.model"; | ||
|
||
export class WorkflowInstanceExecutionPath { | ||
constructor() { | ||
this.executionPointers = []; | ||
} | ||
|
||
id: string; | ||
createDateTime: Date; | ||
executionPointers: WorkflowInstanceExecutionPointer[]; | ||
} |
16 changes: 16 additions & 0 deletions
16
...Server.Website/src/app/stores/workflows/models/workflowinstance-executionpointer.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { MessageToken } from "./messagetoken.model"; | ||
import { NodeInstance } from "./nodeinstance.model"; | ||
|
||
export class WorkflowInstanceExecutionPointer { | ||
constructor() { | ||
this.incomingTokens = []; | ||
this.outgoingTokens = []; | ||
} | ||
|
||
id: string; | ||
isActive: boolean; | ||
flowNodeId: string; | ||
incomingTokens: MessageToken[]; | ||
outgoingTokens: MessageToken[]; | ||
flowNodeInstance: NodeInstance; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/Website/SimpleIdServer.Website/src/app/stores/workflows/models/workflowinstance.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { WorkflowInstanceExecutionPath } from "./workflowinstance-executionpath.model"; | ||
|
||
export class WorkflowInstance { | ||
constructor() { | ||
this.executionPaths = []; | ||
} | ||
|
||
id: string; | ||
status: string; | ||
processFileId: string; | ||
createDateTime: Date; | ||
updateDateTime: Date; | ||
executionPaths: WorkflowInstanceExecutionPath[]; | ||
} |
Oops, something went wrong.