Interface EventConfigurationDao
-
- All Known Implementing Classes:
DefaultEventConfigurationDao
public interface EventConfigurationDaoDAO for theEventConfigurationModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.List<EventConfigurationModel>findActiveEventConfigsByChannel(DestinationChannel channel)Deprecated, for removal: This API element is subject to removal in a future version.since 1905java.util.List<EventConfigurationModel>findActiveEventConfigsByClass(java.lang.String eventClass)Fetch list of all active events.java.util.List<EventConfigurationModel>findActiveEventConfigsByDestinationTargetId(java.lang.String destinationTargetId)Fetch list of active events for DestinationTarget.java.util.List<EventConfigurationModel>findEventConfigsByDestinationTargetId(java.lang.String destinationTargetId)Fetch list of all events for the given DestinationTarget.
-
-
-
Method Detail
-
findActiveEventConfigsByClass
java.util.List<EventConfigurationModel> findActiveEventConfigsByClass(java.lang.String eventClass)
Fetch list of all active events. Its destination target must be in 'Registered' status and its template flag must be false. The Active means export flag of such events is true.- Parameters:
eventClass- EventConfigurationModel.eventClass- Returns:
- List
-
findActiveEventConfigsByDestinationTargetId
java.util.List<EventConfigurationModel> findActiveEventConfigsByDestinationTargetId(java.lang.String destinationTargetId)
Fetch list of active events for DestinationTarget. The Active means export flag of such events is true.- Parameters:
destinationTargetId- the id of the DestinationTarget- Returns:
- List
-
findActiveEventConfigsByChannel
@Deprecated(since="1905", forRemoval=true) java.util.List<EventConfigurationModel> findActiveEventConfigsByChannel(DestinationChannel channel)Deprecated, for removal: This API element is subject to removal in a future version.since 1905Fetch list of active events for eventChannel. The Active means export flag of such events is true.- Parameters:
channel- the id of the DestinationTarget- Returns:
- List
-
findEventConfigsByDestinationTargetId
java.util.List<EventConfigurationModel> findEventConfigsByDestinationTargetId(java.lang.String destinationTargetId)
Fetch list of all events for the given DestinationTarget.- Parameters:
destinationTargetId- the id of the destination target- Returns:
- List
-
-