Interface DbCrmCalendarHandler
-
- All Known Implementing Classes:
DbCrmCalendarHandlerImpl
,HSqlDbCrmCalendarHandler
public interface DbCrmCalendarHandler
DbCrmCalendarHandler.- Author:
- Andreas Rudolph
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DbCrmActivityCalendarEntry[]
getActivityCalendarEntries(Connection c, long crmActivityId)
DbCrmActivityCalendarEntry[]
getActivityCalendarEntries(Connection c, long[] crmActivityIds)
DbCrmActivityCalendarEntry[]
getActivityCalendarEntries(Connection c, long[] crmActivityIds, long[] calendarEntryIds)
DbCrmActivityCalendarEntry[]
getActivityCalendarEntries(Connection c, long crmActivityId, long calendarEntryId)
void
removeActivityCalendarEntries(Connection c, DbCrmActivityCalendarEntry[] relations)
void
removeActivityCalendarEntry(Connection c, DbCrmActivityCalendarEntry relation)
void
saveActivityCalendarEntries(Connection c, DbCrmActivityCalendarEntry relation)
-
-
-
Method Detail
-
getActivityCalendarEntries
DbCrmActivityCalendarEntry[] getActivityCalendarEntries(Connection c, long crmActivityId) throws SQLException
- Throws:
SQLException
-
getActivityCalendarEntries
DbCrmActivityCalendarEntry[] getActivityCalendarEntries(Connection c, long[] crmActivityIds) throws SQLException
- Throws:
SQLException
-
getActivityCalendarEntries
DbCrmActivityCalendarEntry[] getActivityCalendarEntries(Connection c, long crmActivityId, long calendarEntryId) throws SQLException
- Throws:
SQLException
-
getActivityCalendarEntries
DbCrmActivityCalendarEntry[] getActivityCalendarEntries(Connection c, long[] crmActivityIds, long[] calendarEntryIds) throws SQLException
- Throws:
SQLException
-
removeActivityCalendarEntry
void removeActivityCalendarEntry(Connection c, DbCrmActivityCalendarEntry relation) throws SQLException
- Throws:
SQLException
-
removeActivityCalendarEntries
void removeActivityCalendarEntries(Connection c, DbCrmActivityCalendarEntry[] relations) throws SQLException
- Throws:
SQLException
-
saveActivityCalendarEntries
void saveActivityCalendarEntries(Connection c, DbCrmActivityCalendarEntry relation) throws SQLException
- Throws:
SQLException
-
-