| Total Complexity | 1 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | package com.hltech.judged.server.interfaces.rest.validation; |
||
| 10 | @Getter |
||
| 11 | @RequiredArgsConstructor |
||
| 12 | public class ContractValidationReportDto { |
||
| 13 | |||
| 14 | private final ConsumerAndProviderDto consumerAndProvider; |
||
| 15 | private final List<InteractionValidationReportDto> interactions = Lists.newLinkedList(); |
||
| 16 | |||
| 17 | public void addInteractions(List<InteractionValidationReportDto> interactions) { |
||
| 18 | this.interactions.addAll(interactions); |
||
| 19 | } |
||
| 22 |