-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(eventstorming): refresh the package
- Loading branch information
Showing
101 changed files
with
2,539 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,20 @@ | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
|
||
' loads the Item which embeds the element Aggregate | ||
include('eventstorming/Element/Aggregate') | ||
|
||
Aggregate('Aggregate') [ | ||
Aggregate | ||
-- | ||
An aggregate expresses domain aspects that can be treated as a single unit. | ||
] | ||
@enduml |
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,19 @@ | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://github.com/tmorin/plantuml-libs/distribution" | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
|
||
' loads the Item which embeds the element Aggregate | ||
include('eventstorming/Element/Aggregate') | ||
|
||
Aggregate('Aggregate') [ | ||
Aggregate | ||
-- | ||
An aggregate expresses domain aspects that can be treated as a single unit. | ||
] | ||
@enduml |
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,69 @@ | ||
# Aggregate | ||
|
||
|
||
```text | ||
eventstorming/Element/Aggregate | ||
``` | ||
|
||
```text | ||
include('eventstorming/Element/Aggregate') | ||
``` | ||
|
||
|
||
|
||
| Aggregate | | ||
| :---: | | ||
| ![illustration for Aggregate](../../eventstorming/Element/Aggregate.Local.png) | | ||
|
||
|
||
|
||
|
||
## Aggregate | ||
|
||
### Load remotely | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://github.com/tmorin/plantuml-libs/distribution" | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
' loads the Item which embeds the element Aggregate | ||
include('eventstorming/Element/Aggregate') | ||
Aggregate('Aggregate') [ | ||
Aggregate | ||
-- | ||
An aggregate expresses domain aspects that can be treated as a single unit. | ||
] | ||
@enduml | ||
``` | ||
|
||
### Load locally | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
' loads the Item which embeds the element Aggregate | ||
include('eventstorming/Element/Aggregate') | ||
Aggregate('Aggregate') [ | ||
Aggregate | ||
-- | ||
An aggregate expresses domain aspects that can be treated as a single unit. | ||
] | ||
@enduml | ||
``` | ||
|
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 @@ | ||
' definition of the Item eventstorming/Element/Aggregate | ||
|
||
|
||
skinparam file<<Aggregate>> { | ||
StereotypeFontSize $FONT_SIZE_SM | ||
shadowing false | ||
FontColor $FONT_COLOR | ||
BorderColor $FONT_COLOR | ||
BackgroundColor #fdfd9d | ||
} | ||
|
||
!procedure Aggregate($id, $label="") | ||
EsEntity('file', 'Aggregate', $id, $label) | ||
!endprocedure |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,20 @@ | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
|
||
' loads the Item which embeds the element Command | ||
include('eventstorming/Element/Command') | ||
|
||
Command('Command') [ | ||
Command | ||
-- | ||
A command is an intent to mutate the state of the system. | ||
] | ||
@enduml |
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,19 @@ | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://github.com/tmorin/plantuml-libs/distribution" | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
|
||
' loads the Item which embeds the element Command | ||
include('eventstorming/Element/Command') | ||
|
||
Command('Command') [ | ||
Command | ||
-- | ||
A command is an intent to mutate the state of the system. | ||
] | ||
@enduml |
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,69 @@ | ||
# Command | ||
|
||
|
||
```text | ||
eventstorming/Element/Command | ||
``` | ||
|
||
```text | ||
include('eventstorming/Element/Command') | ||
``` | ||
|
||
|
||
|
||
| Command | | ||
| :---: | | ||
| ![illustration for Command](../../eventstorming/Element/Command.Local.png) | | ||
|
||
|
||
|
||
|
||
## Command | ||
|
||
### Load remotely | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://github.com/tmorin/plantuml-libs/distribution" | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
' loads the Item which embeds the element Command | ||
include('eventstorming/Element/Command') | ||
Command('Command') [ | ||
Command | ||
-- | ||
A command is an intent to mutate the state of the system. | ||
] | ||
@enduml | ||
``` | ||
|
||
### Load locally | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
' loads the Item which embeds the element Command | ||
include('eventstorming/Element/Command') | ||
Command('Command') [ | ||
Command | ||
-- | ||
A command is an intent to mutate the state of the system. | ||
] | ||
@enduml | ||
``` | ||
|
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 @@ | ||
' definition of the Item eventstorming/Element/Command | ||
|
||
|
||
skinparam file<<Command>> { | ||
StereotypeFontSize $FONT_SIZE_SM | ||
shadowing false | ||
FontColor $FONT_COLOR | ||
BorderColor $FONT_COLOR | ||
BackgroundColor #aec6cf | ||
} | ||
|
||
!procedure Command($id, $label="") | ||
EsEntity('file', 'Command', $id, $label) | ||
!endprocedure |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,20 @@ | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
|
||
' loads the Item which embeds the element Comment | ||
include('eventstorming/Element/Comment') | ||
|
||
Comment('Comment') [ | ||
Comment | ||
-- | ||
A comment is used to provide additional information. | ||
] | ||
@enduml |
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,19 @@ | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://github.com/tmorin/plantuml-libs/distribution" | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
|
||
' loads the Item which embeds the element Comment | ||
include('eventstorming/Element/Comment') | ||
|
||
Comment('Comment') [ | ||
Comment | ||
-- | ||
A comment is used to provide additional information. | ||
] | ||
@enduml |
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,69 @@ | ||
# Comment | ||
|
||
|
||
```text | ||
eventstorming/Element/Comment | ||
``` | ||
|
||
```text | ||
include('eventstorming/Element/Comment') | ||
``` | ||
|
||
|
||
|
||
| Comment | | ||
| :---: | | ||
| ![illustration for Comment](../../eventstorming/Element/Comment.Local.png) | | ||
|
||
|
||
|
||
|
||
## Comment | ||
|
||
### Load remotely | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://github.com/tmorin/plantuml-libs/distribution" | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
' loads the Item which embeds the element Comment | ||
include('eventstorming/Element/Comment') | ||
Comment('Comment') [ | ||
Comment | ||
-- | ||
A comment is used to provide additional information. | ||
] | ||
@enduml | ||
``` | ||
|
||
### Load locally | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('eventstorming/bootstrap') | ||
' loads the Item which embeds the element Comment | ||
include('eventstorming/Element/Comment') | ||
Comment('Comment') [ | ||
Comment | ||
-- | ||
A comment is used to provide additional information. | ||
] | ||
@enduml | ||
``` | ||
|
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 @@ | ||
' definition of the Item eventstorming/Element/Comment | ||
|
||
|
||
skinparam file<<Comment>> { | ||
StereotypeFontSize $FONT_SIZE_SM | ||
shadowing false | ||
FontColor $FONT_COLOR | ||
BorderColor $FONT_COLOR | ||
BackgroundColor none | ||
} | ||
|
||
!procedure Comment($id, $label="") | ||
EsEntity('file', 'Comment', $id, $label) | ||
!endprocedure |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.