server/data/data-cassandra/src/main/java/org/apache/james/dlp/eventsourcing/cassandra/DLPConfigurationItemsRemovedDTO.java [53:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private DLPConfigurationItemsRemovedDTO(
            @JsonProperty("type") String type,
            @JsonProperty("eventId") int eventId,
            @JsonProperty("aggregateId") String aggregateId,
            @JsonProperty("configurationItems") List<DLPConfigurationItemDTO> configurationItems) {
        Preconditions.checkNotNull(type);
        Preconditions.checkNotNull(aggregateId);
        Preconditions.checkNotNull(configurationItems);
        Preconditions.checkArgument(!configurationItems.isEmpty());

        this.type = type;
        this.eventId = eventId;
        this.aggregateId = aggregateId;
        this.configurationItems = configurationItems;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



server/data/data-cassandra/src/main/java/org/apache/james/dlp/eventsourcing/cassandra/DLPConfigurationItemAddedDTO.java [53:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private DLPConfigurationItemAddedDTO(
            @JsonProperty("type") String type,
            @JsonProperty("eventId") int eventId,
            @JsonProperty("aggregateId") String aggregateId,
            @JsonProperty("configurationItems") List<DLPConfigurationItemDTO> configurationItems) {
        Preconditions.checkNotNull(type);
        Preconditions.checkNotNull(aggregateId);
        Preconditions.checkNotNull(configurationItems);
        Preconditions.checkArgument(!configurationItems.isEmpty());

        this.type = type;
        this.eventId = eventId;
        this.aggregateId = aggregateId;
        this.configurationItems = configurationItems;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



