Interface DbAgencyCalendarHandler
-
- All Known Implementing Classes:
DbAgencyCalendarHandlerImpl
,HSqlDbAgencyCalendarHandler
public interface DbAgencyCalendarHandler
DbAgencyCalendarHandler.- Author:
- Andreas Rudolph
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DbAgencyEstateCalendarEntry[]
getEstateCalendarEntries(Connection c, long[] agencyEstateIds, long[] calendarEntryIds)
DbAgencyEstateCalendarEntry[]
getEstateCalendarEntries(Connection c, long agencyEstateId, long calendarEntryId)
void
removeEstateCalendarEntries(Connection c, DbAgencyEstateCalendarEntry[] relations)
void
removeEstateCalendarEntry(Connection c, DbAgencyEstateCalendarEntry relation)
void
saveEstateCalendarEntry(Connection c, DbAgencyEstateCalendarEntry relation)
-
-
-
Method Detail
-
getEstateCalendarEntries
DbAgencyEstateCalendarEntry[] getEstateCalendarEntries(Connection c, long agencyEstateId, long calendarEntryId) throws SQLException
- Throws:
SQLException
-
getEstateCalendarEntries
DbAgencyEstateCalendarEntry[] getEstateCalendarEntries(Connection c, long[] agencyEstateIds, long[] calendarEntryIds) throws SQLException
- Throws:
SQLException
-
removeEstateCalendarEntry
void removeEstateCalendarEntry(Connection c, DbAgencyEstateCalendarEntry relation) throws SQLException
- Throws:
SQLException
-
removeEstateCalendarEntries
void removeEstateCalendarEntries(Connection c, DbAgencyEstateCalendarEntry[] relations) throws SQLException
- Throws:
SQLException
-
saveEstateCalendarEntry
void saveEstateCalendarEntry(Connection c, DbAgencyEstateCalendarEntry relation) throws SQLException
- Throws:
SQLException
-
-