All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.stapi.graphsystem.aggregatedefinition.model.eventFactory.EventFactoryModificationResult Maven / Gradle / Ivy

package ai.stapi.graphsystem.aggregatedefinition.model.eventFactory;

import ai.stapi.graphsystem.aggregatedefinition.model.CommandHandlerDefinitionDTO.EventFactory.EventFactoryModification;
import java.util.List;

public class EventFactoryModificationResult {

  private final String eventFactoryId;
  private final List eventFactoryModifications;

  public EventFactoryModificationResult(
      String eventFactoryId,
      List eventFactoryModifications
  ) {
    this.eventFactoryId = eventFactoryId;
    this.eventFactoryModifications = eventFactoryModifications;
  }

  public String getEventFactoryId() {
    return eventFactoryId;
  }

  public List getEventFactoryModifications() {
    return eventFactoryModifications;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy