Interface DbAgencyBrokeringsHandler
-
- All Known Implementing Classes:
DbAgencyBrokeringsHandlerImpl,HSqlDbAgencyBrokeringsHandler
public interface DbAgencyBrokeringsHandlerDbAgencyBrokeringHandler.- Author:
- Andreas Rudolph
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DbAgencyBrokeringgetBrokering(Connection c, long id)DbAgencyBrokeringgetBrokeringForObject(Connection c, long agencyObjectId)long[]getBrokeringIds(Connection c)long[]getBrokeringIds(Connection c, DbAgencyObject.Status status, long[] contactEntryIds, long[] agencyObjectIds)DbAgencyBrokering[]getBrokerings(Connection c)DbAgencyBrokering[]getBrokerings(Connection c, long[] ids)DbAgencyBrokering[]getBrokeringsForContact(Connection c, long contactEntryId)DbAgencyBrokering[]getBrokeringsForContact(Connection c, long[] contactEntryIds)DbAgencyBrokering[]getBrokeringsForObject(Connection c, long[] agencyObjectIds)long[]getUnBrokeredObjectIds(Connection c)voidremoveBrokering(Connection c, long id)voidremoveBrokerings(Connection c, long[] ids)voidsaveBrokering(Connection c, DbAgencyBrokering brokering)
-
-
-
Method Detail
-
getBrokerings
DbAgencyBrokering[] getBrokerings(Connection c) throws SQLException
- Throws:
SQLException
-
getBrokerings
DbAgencyBrokering[] getBrokerings(Connection c, long[] ids) throws SQLException
- Throws:
SQLException
-
getBrokeringsForContact
DbAgencyBrokering[] getBrokeringsForContact(Connection c, long contactEntryId) throws SQLException
- Throws:
SQLException
-
getBrokeringsForContact
DbAgencyBrokering[] getBrokeringsForContact(Connection c, long[] contactEntryIds) throws SQLException
- Throws:
SQLException
-
getBrokeringsForObject
DbAgencyBrokering[] getBrokeringsForObject(Connection c, long[] agencyObjectIds) throws SQLException
- Throws:
SQLException
-
getBrokering
DbAgencyBrokering getBrokering(Connection c, long id) throws SQLException
- Throws:
SQLException
-
getBrokeringForObject
DbAgencyBrokering getBrokeringForObject(Connection c, long agencyObjectId) throws SQLException
- Throws:
SQLException
-
getBrokeringIds
long[] getBrokeringIds(Connection c) throws SQLException
- Throws:
SQLException
-
getBrokeringIds
long[] getBrokeringIds(Connection c, DbAgencyObject.Status status, long[] contactEntryIds, long[] agencyObjectIds) throws SQLException
- Throws:
SQLException
-
getUnBrokeredObjectIds
long[] getUnBrokeredObjectIds(Connection c) throws SQLException
- Throws:
SQLException
-
removeBrokering
void removeBrokering(Connection c, long id) throws SQLException
- Throws:
SQLException
-
removeBrokerings
void removeBrokerings(Connection c, long[] ids) throws SQLException
- Throws:
SQLException
-
saveBrokering
void saveBrokering(Connection c, DbAgencyBrokering brokering) throws SQLException
- Throws:
SQLException
-
-