@@ -113,8 +113,7 @@ BoundedContext customersBackendTeam = new BoundedContext("Customers Backend Team
113
113
BoundedContext customersFrontendTeam = new BoundedContext (" Customers Frontend Team" , BoundedContextType . TEAM )
114
114
.realizing(customerSelfService);
115
115
BoundedContext contractsTeam = new BoundedContext (" Contracts" , BoundedContextType . TEAM )
116
- .realizing(policyManagementContext);
117
- BoundedContext claimsTeam = new BoundedContext (" Claims" , BoundedContextType . TEAM )
116
+ .realizing(policyManagementContext)
118
117
.realizing(riskManagementContext);
119
118
120
119
ContextMap contextMap = new ContextMap ()
@@ -125,7 +124,6 @@ ContextMap contextMap = new ContextMap()
125
124
.addBoundedContext(customersBackendTeam)
126
125
.addBoundedContext(customersFrontendTeam)
127
126
.addBoundedContext(contractsTeam)
128
- .addBoundedContext(claimsTeam)
129
127
.addRelationship(new UpstreamDownstreamRelationship (customerManagement, customerSelfService)
130
128
.setCustomerSupplier(true ))
131
129
.addRelationship(new UpstreamDownstreamRelationship (customerManagement, policyManagementContext)
@@ -134,8 +132,7 @@ ContextMap contextMap = new ContextMap()
134
132
.addRelationship(new Partnership (policyManagementContext, riskManagementContext))
135
133
.addRelationship(new UpstreamDownstreamRelationship (customersBackendTeam, customersFrontendTeam)
136
134
.setCustomerSupplier(true ))
137
- .addRelationship(new UpstreamDownstreamRelationship (customersBackendTeam, contractsTeam))
138
- .addRelationship(new Partnership (contractsTeam, claimsTeam));
135
+ .addRelationship(new UpstreamDownstreamRelationship (customersBackendTeam, contractsTeam));
139
136
140
137
new ContextMapGenerator ()
141
138
.generateContextMapGraphic(contextMap, Format . PNG , " /home/user/myContextMap.png" );
0 commit comments