Skip to content

Commit

Permalink
fix(eventstorming): refresh the package
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorin committed Jun 10, 2021
1 parent c9d42be commit d4be4bd
Show file tree
Hide file tree
Showing 101 changed files with 2,539 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions distribution/eventstorming/Element/Aggregate.Local.puml
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
19 changes: 19 additions & 0 deletions distribution/eventstorming/Element/Aggregate.Remote.puml
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
69 changes: 69 additions & 0 deletions distribution/eventstorming/Element/Aggregate.md
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
```

14 changes: 14 additions & 0 deletions distribution/eventstorming/Element/Aggregate.puml
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.
20 changes: 20 additions & 0 deletions distribution/eventstorming/Element/Command.Local.puml
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
19 changes: 19 additions & 0 deletions distribution/eventstorming/Element/Command.Remote.puml
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
69 changes: 69 additions & 0 deletions distribution/eventstorming/Element/Command.md
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
```

14 changes: 14 additions & 0 deletions distribution/eventstorming/Element/Command.puml
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.
20 changes: 20 additions & 0 deletions distribution/eventstorming/Element/Comment.Local.puml
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
19 changes: 19 additions & 0 deletions distribution/eventstorming/Element/Comment.Remote.puml
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
69 changes: 69 additions & 0 deletions distribution/eventstorming/Element/Comment.md
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
```

14 changes: 14 additions & 0 deletions distribution/eventstorming/Element/Comment.puml
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.
Loading

0 comments on commit d4be4bd

Please sign in to comment.