Class EventServiceMain
java.lang.Object
com.endurancetrio.business.event.service.EventServiceMain
- All Implemented Interfaces:
EventService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetEventOverview(Long id, int year) Returns anEventOverviewDTOcontaining the summary details of the event identified by the givenidand belonging to the givenyear, including its organizers and races.getEventsByYear(int year, org.springframework.data.domain.Pageable pageable) Returns anEventsPageDTOcontaining theeventswhose start date falls within the givenyear, ordered by start date descending and paginated according to the givenPageable.Returns a list of all distinct years extracted from the events' start dates, ordered descending.
-
Constructor Details
-
EventServiceMain
-
-
Method Details
-
getEventYears
Description copied from interface:EventServiceReturns a list of all distinct years extracted from the events' start dates, ordered descending. This is used byYearsWithEventsDTOto drive the year-browser pagination on the events landing page.- Specified by:
getEventYearsin interfaceEventService- Returns:
- a list of distinct event years in descending order
-
getEventsByYear
@Transactional(readOnly=true) public EventsPageDTO getEventsByYear(int year, org.springframework.data.domain.Pageable pageable) Description copied from interface:EventServiceReturns anEventsPageDTOcontaining theeventswhose start date falls within the givenyear, ordered by start date descending and paginated according to the givenPageable.- Specified by:
getEventsByYearin interfaceEventService- Parameters:
year- the year to filter events bypageable- the pagination information (page number, page size, etc.)- Returns:
- an
EventsPageDTOwith the events for the given year and pagination metadata
-
getEventOverview
Description copied from interface:EventServiceReturns anEventOverviewDTOcontaining the summary details of the event identified by the givenidand belonging to the givenyear, including its organizers and races.- Specified by:
getEventOverviewin interfaceEventService- Parameters:
id- the unique identifier of the eventyear- the year the event belongs to- Returns:
- an
EventOverviewDTOwith the event overview
-