Interface DbCrmMailsHandler
-
- All Known Implementing Classes:
DbCrmMailsHandlerImpl
,HSqlDbCrmMailsHandler
public interface DbCrmMailsHandler
DbCrmMailsHandler.- Author:
- Andreas Rudolph
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DbCrmActivityMailMessage
getRelationForActivity(Connection c, long crmActivityId)
DbCrmActivityMailMessage
getRelationForMessage(Connection c, long mailMessageId)
DbCrmActivityMailMessage[]
getRelationsForActivity(Connection c, long[] crmActivityIds)
DbCrmActivityMailMessage[]
getRelationsForFolder(Connection c, long mailFolderId)
DbCrmActivityMailMessage[]
getRelationsForFolder(Connection c, long[] mailFolderIds)
DbCrmActivityMailMessage[]
getRelationsForMessage(Connection c, long[] mailMessageIds)
void
removeRelation(Connection c, DbCrmActivityMailMessage relation)
void
removeRelations(Connection c, DbCrmActivityMailMessage[] relations)
void
saveRelation(Connection c, DbCrmActivityMailMessage relation)
-
-
-
Method Detail
-
getRelationForActivity
DbCrmActivityMailMessage getRelationForActivity(Connection c, long crmActivityId) throws SQLException
- Throws:
SQLException
-
getRelationsForActivity
DbCrmActivityMailMessage[] getRelationsForActivity(Connection c, long[] crmActivityIds) throws SQLException
- Throws:
SQLException
-
getRelationsForFolder
DbCrmActivityMailMessage[] getRelationsForFolder(Connection c, long mailFolderId) throws SQLException
- Throws:
SQLException
-
getRelationsForFolder
DbCrmActivityMailMessage[] getRelationsForFolder(Connection c, long[] mailFolderIds) throws SQLException
- Throws:
SQLException
-
getRelationForMessage
DbCrmActivityMailMessage getRelationForMessage(Connection c, long mailMessageId) throws SQLException
- Throws:
SQLException
-
getRelationsForMessage
DbCrmActivityMailMessage[] getRelationsForMessage(Connection c, long[] mailMessageIds) throws SQLException
- Throws:
SQLException
-
removeRelation
void removeRelation(Connection c, DbCrmActivityMailMessage relation) throws SQLException
- Throws:
SQLException
-
removeRelations
void removeRelations(Connection c, DbCrmActivityMailMessage[] relations) throws SQLException
- Throws:
SQLException
-
saveRelation
void saveRelation(Connection c, DbCrmActivityMailMessage relation) throws SQLException
- Throws:
SQLException
-
-