File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
src/main/cml/bounded-context-canvas-example Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ 11.0
Original file line number Diff line number Diff line change 1+ /* Example Context Map written using a Bounded Context Canvas. */
2+ ContextMap InsuranceContextMap {
3+ type = SYSTEM_LANDSCAPE
4+ state = TO_BE
5+
6+ /* Add bounded contexts to this context map: */
7+ contains CustomerManagementContext
8+ }
9+
10+ /* Domain & Subdomain Definitions */
11+ Domain InsuranceDomain {
12+ Subdomain CustomerManagementDomain {
13+ type = CORE_DOMAIN
14+ domainVisionStatement = "Subdomain managing everything customer-related."
15+ }
16+ }
17+
18+ /* Bounded Context Definitions */
19+ BoundedContext CustomerManagementContext implements CustomerManagementDomain {
20+ businessModel = "ENGAGEMENT"
21+ evolution = CUSTOM_BUILT
22+ }
Original file line number Diff line number Diff line change 1+ # Bounded Context Canvas Example
2+
3+ This example illustrates the Context Mapper DSL capabilities to support Bounded Context canvases.
4+ Full support is a _ work in progress_ .
5+
6+ <!-- TODO: Improve the example link as more BC canvas features are implemented -->
7+ Please see the [ bounded context canvas example] ( Bounded-Context-Canvas-Example-Stage-1.cml ) .
You can’t perform that action at this time.
0 commit comments