@@ -38,8 +38,8 @@ BoundedContext PolicyManagement {
38
38
}
39
39
Entity insurance_quote_requests_RootEntity {
40
40
aggregateRoot
41
- def List<@InsuranceQuoteRequestDto> getInsuranceQuoteRequests;
42
- def @InsuranceQuoteRequestDto getInsuranceQuoteRequest;
41
+ * List<@InsuranceQuoteRequestDto> getInsuranceQuoteRequests;
42
+ * @InsuranceQuoteRequestDto getInsuranceQuoteRequest;
43
43
}
44
44
}
45
45
// This Aggregate has been created on the basis of the RESTful HTTP controller com.lakesidemutual.policymanagement.interfaces.CustomerInformationHolder.
@@ -50,16 +50,15 @@ BoundedContext PolicyManagement {
50
50
}
51
51
Entity customers_RootEntity {
52
52
aggregateRoot
53
- def @CustomerDto getCustomer (@CustomerIdDto customerIdDto);
54
- def List<@customers_PolicyDto> getPolicies (@CustomerIdDto customerIdDto);
55
- def @PaginatedCustomerResponseDto getCustomers;
53
+ * @CustomerDto getCustomer (@CustomerIdDto customerIdDto);
54
+ * List<@customers_PolicyDto> getPolicies (@CustomerIdDto customerIdDto);
55
+ * @PaginatedCustomerResponseDto getCustomers;
56
56
}
57
57
// This value object has been derived from the class com.lakesidemutual.policymanagement.interfaces.dtos.customer.CustomerDto.
58
58
ValueObject CustomerDto {
59
59
String customerId
60
60
CustomerProfileDto customerProfile
61
61
List<Link> links
62
- - List<CustomerDto> customers
63
62
}
64
63
// This value object has been derived from the class com.lakesidemutual.policymanagement.interfaces.dtos.policy.PolicyDto.
65
64
ValueObject customers_PolicyDto {
@@ -106,7 +105,6 @@ BoundedContext PolicyManagement {
106
105
InsuringAgreementDto insuringAgreement
107
106
Date creationDate
108
107
Object customer
109
- - List<PolicyDto> policies
110
108
}
111
109
// This value object has been derived from the class com.lakesidemutual.policymanagement.interfaces.dtos.policy.CreatePolicyRequestDto.
112
110
ValueObject CreatePolicyRequestDto {
@@ -120,9 +118,9 @@ BoundedContext PolicyManagement {
120
118
}
121
119
Entity policies_RootEntity {
122
120
aggregateRoot
123
- def @PolicyDto getPolicy (@PolicyId policyId);
124
- def @PolicyDto updatePolicy (@CreatePolicyRequestDto createPolicyDto, @PolicyId policyId);
125
- def @PaginatedPolicyResponseDto getPolicies;
121
+ * @PolicyDto getPolicy (@PolicyId policyId);
122
+ * @PolicyDto updatePolicy (@CreatePolicyRequestDto createPolicyDto, @PolicyId policyId);
123
+ * @PaginatedPolicyResponseDto getPolicies;
126
124
}
127
125
// This value object has been derived from the class com.lakesidemutual.policymanagement.interfaces.dtos.policy.PaginatedPolicyResponseDto.
128
126
ValueObject PaginatedPolicyResponseDto {
@@ -157,7 +155,7 @@ BoundedContext CustomerManagement {
157
155
ValueObject CustomerManagement_customers_CustomerDto {
158
156
List<Link> links
159
157
String customerId
160
- - CustomerProfileDto customerProfile - List<CustomerManagement_customers_CustomerDto> customers
158
+ - CustomerProfileDto customerProfile
161
159
}
162
160
// This value object has been derived from the class com.lakesidemutual.customermanagement.interfaces.dtos.CustomerProfileDto.
163
161
ValueObject CustomerProfileDto {
@@ -168,13 +166,12 @@ BoundedContext CustomerManagement {
168
166
String lastname
169
167
String ^email
170
168
AddressDto currentAddress
171
- - CustomerProfileDto customerProfile
172
169
}
173
170
Entity CustomerManagement_customers_RootEntity {
174
171
aggregateRoot
175
- def @CustomerManagement_customers_PaginatedCustomerResponseDto getCustomers;
176
- def @CustomerManagement_customers_CustomerDto getCustomer (@CustomerManagement_customers_CustomerId customerId);
177
- def @CustomerManagement_customers_CustomerDto updateCustomer (@CustomerManagement_customers_CustomerId customerId, @CustomerProfileDto customerProfile);
172
+ * @CustomerManagement_customers_PaginatedCustomerResponseDto getCustomers;
173
+ * @CustomerManagement_customers_CustomerDto getCustomer (@CustomerManagement_customers_CustomerId customerId);
174
+ * @CustomerManagement_customers_CustomerDto updateCustomer (@CustomerManagement_customers_CustomerId customerId, @CustomerProfileDto customerProfile);
178
175
}
179
176
// This value object has been derived from the class com.lakesidemutual.customermanagement.domain.customer.CustomerId.
180
177
ValueObject CustomerManagement_customers_CustomerId {
@@ -186,7 +183,7 @@ BoundedContext CustomerManagement {
186
183
Aggregate notifications {
187
184
Entity notifications_RootEntity {
188
185
aggregateRoot
189
- def List<@NotificationDto> getNotifications;
186
+ * List<@NotificationDto> getNotifications;
190
187
}
191
188
// This value object has been derived from the class com.lakesidemutual.customermanagement.interfaces.dtos.NotificationDto.
192
189
ValueObject NotificationDto {
@@ -211,7 +208,7 @@ BoundedContext CustomerManagement {
211
208
}
212
209
Entity interaction_logs_RootEntity {
213
210
aggregateRoot
214
- def @InteractionLogAggregateRoot getInteractionLog (@interaction_logs_CustomerId customerId);
211
+ * @InteractionLogAggregateRoot getInteractionLog (@interaction_logs_CustomerId customerId);
215
212
}
216
213
}
217
214
}
@@ -238,8 +235,8 @@ BoundedContext CustomerSelfService {
238
235
}
239
236
Entity CustomerSelfService_insurance_quote_requests_RootEntity {
240
237
aggregateRoot
241
- def @CustomerSelfService_insurance_quote_requests_InsuranceQuoteRequestDto getInsuranceQuoteRequest;
242
- def List<@CustomerSelfService_insurance_quote_requests_InsuranceQuoteRequestDto> getInsuranceQuoteRequests;
238
+ * @CustomerSelfService_insurance_quote_requests_InsuranceQuoteRequestDto getInsuranceQuoteRequest;
239
+ * List<@CustomerSelfService_insurance_quote_requests_InsuranceQuoteRequestDto> getInsuranceQuoteRequests;
243
240
}
244
241
}
245
242
// This Aggregate has been created on the basis of the RESTful HTTP controller com.lakesidemutual.customerselfservice.interfaces.CityStaticDataHolder.
@@ -250,14 +247,14 @@ BoundedContext CustomerSelfService {
250
247
}
251
248
Entity CustomerSelfService_cities_RootEntity {
252
249
aggregateRoot
253
- def @CustomerSelfService_cities_CitiesResponseDto getCitiesForPostalCode;
250
+ * @CustomerSelfService_cities_CitiesResponseDto getCitiesForPostalCode;
254
251
}
255
252
}
256
253
// This Aggregate has been created on the basis of the RESTful HTTP controller com.lakesidemutual.customerselfservice.interfaces.UserInformationHolder.
257
254
Aggregate user {
258
255
Entity user_RootEntity {
259
256
aggregateRoot
260
- def @UserResponseDto getCurrentUser;
257
+ * @UserResponseDto getCurrentUser;
261
258
}
262
259
// This value object has been derived from the class com.lakesidemutual.customerselfservice.interfaces.dtos.identityaccess.UserResponseDto.
263
260
ValueObject UserResponseDto {
@@ -290,9 +287,9 @@ BoundedContext CustomerSelfService {
290
287
}
291
288
Entity CustomerSelfService_customers_RootEntity {
292
289
aggregateRoot
293
- def @CustomerSelfService_customers_AddressDto changeAddress (@CustomerSelfService_customers_CustomerId customerId, @CustomerSelfService_customers_AddressDto requestDto);
294
- def @CustomerSelfService_customers_CustomerDto getCustomer (@CustomerSelfService_customers_CustomerId customerId);
295
- def List<@CustomerSelfService_customers_InsuranceQuoteRequestDto> getInsuranceQuoteRequests (@CustomerSelfService_customers_CustomerId customerId);
290
+ * @CustomerSelfService_customers_AddressDto changeAddress (@CustomerSelfService_customers_CustomerId customerId, @CustomerSelfService_customers_AddressDto requestDto);
291
+ * @CustomerSelfService_customers_CustomerDto getCustomer (@CustomerSelfService_customers_CustomerId customerId);
292
+ * List<@CustomerSelfService_customers_InsuranceQuoteRequestDto> getInsuranceQuoteRequests (@CustomerSelfService_customers_CustomerId customerId);
296
293
}
297
294
// This value object has been derived from the class com.lakesidemutual.customerselfservice.interfaces.dtos.customer.AddressDto.
298
295
ValueObject CustomerSelfService_customers_AddressDto {
@@ -309,7 +306,7 @@ BoundedContext CustomerCore {
309
306
Aggregate cities {
310
307
Entity cities_RootEntity {
311
308
aggregateRoot
312
- def @CitiesResponseDto getCitiesForPostalCode;
309
+ * @CitiesResponseDto getCitiesForPostalCode;
313
310
}
314
311
// This value object has been derived from the class com.lakesidemutual.customercore.interfaces.dtos.city.CitiesResponseDto.
315
312
ValueObject CitiesResponseDto {
@@ -331,10 +328,10 @@ BoundedContext CustomerCore {
331
328
}
332
329
Entity CustomerCore_customers_RootEntity {
333
330
aggregateRoot
334
- def @CustomerResponseDto updateCustomer (@CustomerId customerId , @CustomerProfileUpdateRequestDto requestDto );
335
- def @CustomersResponseDto getCustomer;
336
- def @AddressDto changeAddress (@AddressDto requestDto , @CustomerId customerId );
337
- def @CustomerCore_customers_PaginatedCustomerResponseDto getCustomers;
331
+ * @CustomerResponseDto updateCustomer (@CustomerProfileUpdateRequestDto requestDto , @CustomerId customerId );
332
+ * @CustomersResponseDto getCustomer;
333
+ * @AddressDto changeAddress (@CustomerId customerId , @AddressDto requestDto );
334
+ * @CustomerCore_customers_PaginatedCustomerResponseDto getCustomers;
338
335
}
339
336
// This value object has been derived from the class com.lakesidemutual.customercore.interfaces.dtos.customer.CustomerProfileUpdateRequestDto.
340
337
ValueObject CustomerProfileUpdateRequestDto {
@@ -360,7 +357,6 @@ BoundedContext CustomerCore {
360
357
Date birthday
361
358
String customerId
362
359
List<Link> links
363
- - List<CustomerResponseDto> customers - List<CustomerResponseDto> customers
364
360
}
365
361
// This value object has been derived from the class com.lakesidemutual.customercore.interfaces.dtos.customer.CustomersResponseDto.
366
362
ValueObject CustomersResponseDto {
0 commit comments