public interface EventReportRepository
| Modifier and Type | Method and Description |
|---|---|
List<ReportEvent> |
getEventsForPeriod(@NotNull OffsetDateTime start,
@NotNull OffsetDateTime end,
@Nullable String instanceId)
Returns a list of Event objects, recorded in given time period
|
List<ReportEvent> |
getEventsForPeriodAndConsentId(@NotNull OffsetDateTime start,
@NotNull OffsetDateTime end,
@NotNull String consentId,
@Nullable String instanceId)
Returns a list of Event objects, recorded in given time period and with the given consentId
|
List<ReportEvent> |
getEventsForPeriodAndEventOrigin(@NotNull OffsetDateTime start,
@NotNull OffsetDateTime end,
@NotNull de.adorsys.psd2.event.core.model.EventOrigin eventOrigin,
@Nullable String instanceId)
Returns a list of Event objects from a specific origin, recorded in given time period
|
List<ReportEvent> |
getEventsForPeriodAndEventType(@NotNull OffsetDateTime start,
@NotNull OffsetDateTime end,
@NotNull de.adorsys.psd2.event.core.model.EventType eventType,
@Nullable String instanceId)
Returns a list of Event objects of the specific type, recorded in given time period
|
List<ReportEvent> |
getEventsForPeriodAndPaymentId(@NotNull OffsetDateTime start,
@NotNull OffsetDateTime end,
@NotNull String paymentId,
@Nullable String instanceId)
Returns a list of Event objects, recorded in given time period and with the given paymentId
|
List<ReportEvent> getEventsForPeriod(@NotNull @NotNull OffsetDateTime start, @NotNull @NotNull OffsetDateTime end, @Nullable @Nullable String instanceId)
start - First date of the periodend - Last date of the periodinstanceId - The id of particular service instanceList<ReportEvent> getEventsForPeriodAndConsentId(@NotNull @NotNull OffsetDateTime start, @NotNull @NotNull OffsetDateTime end, @NotNull @NotNull String consentId, @Nullable @Nullable String instanceId)
start - First date of the periodend - Last date of the periodconsentId - Id of the consentinstanceId - The id of particular service instanceList<ReportEvent> getEventsForPeriodAndPaymentId(@NotNull @NotNull OffsetDateTime start, @NotNull @NotNull OffsetDateTime end, @NotNull @NotNull String paymentId, @Nullable @Nullable String instanceId)
start - First date of the periodend - Last date of the periodpaymentId - Id of the paymentinstanceId - The id of particular service instanceList<ReportEvent> getEventsForPeriodAndEventType(@NotNull @NotNull OffsetDateTime start, @NotNull @NotNull OffsetDateTime end, @NotNull @NotNull de.adorsys.psd2.event.core.model.EventType eventType, @Nullable @Nullable String instanceId)
start - First date of the periodend - Last date of the periodeventType - The searched type of the eventsinstanceId - The id of particular service instanceList<ReportEvent> getEventsForPeriodAndEventOrigin(@NotNull @NotNull OffsetDateTime start, @NotNull @NotNull OffsetDateTime end, @NotNull @NotNull de.adorsys.psd2.event.core.model.EventOrigin eventOrigin, @Nullable @Nullable String instanceId)
start - First date of the periodend - Last date of the periodeventOrigin - The searched origin of the eventsinstanceId - The id of particular service instanceCopyright © 2020. All rights reserved.