@ -26,7 +26,7 @@ public interface CallHistoryService
* @param contact MetaContact which contacts participate in
* the returned calls
* @param startDate Date the start date of the calls
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findByStartDate ( MetaContact contact , Date startDate )
@ -39,7 +39,7 @@ public Collection<CallRecord> findByStartDate(MetaContact contact, Date startDat
* @param contact MetaContact which contacts participate in
* the returned calls
* @param endDate Date the end date of the calls
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findByEndDate ( MetaContact contact , Date endDate )
@ -53,7 +53,7 @@ public Collection<CallRecord> findByEndDate(MetaContact contact, Date endDate)
* the returned calls
* @param startDate Date the start date of the calls
* @param endDate Date the end date of the calls
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findByPeriod ( MetaContact contact , Date startDate , Date endDate )
@ -64,7 +64,7 @@ public Collection<CallRecord> findByPeriod(MetaContact contact, Date startDate,
* Returns all the calls made after the given date
*
* @param startDate Date the start date of the calls
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findByStartDate ( Date startDate )
@ -74,7 +74,7 @@ public Collection<CallRecord> findByStartDate(Date startDate)
* Returns all the calls made before the given date
*
* @param endDate Date the end date of the calls
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findByEndDate ( Date endDate )
@ -85,7 +85,7 @@ public Collection<CallRecord> findByEndDate(Date endDate)
*
* @param startDate Date the start date of the calls
* @param endDate Date the end date of the calls
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findByPeriod ( Date startDate , Date endDate )
@ -98,7 +98,7 @@ public Collection<CallRecord> findByPeriod(Date startDate, Date endDate)
* @param contact MetaContact which contacts participate in
* the returned calls
* @param count calls count
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findLast ( MetaContact contact , int count )
@ -109,16 +109,16 @@ public Collection<CallRecord> findLast(MetaContact contact, int count)
* in the supplied metacontact
*
* @param count calls count
* @return Collection of CallRecords with CallP articipant Record
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findLast ( int count )
throws RuntimeException ;
/ * *
* Find the calls made by the supplied p articipant address
* @param address String the address of the p articipant
* @return Collection of CallRecords with CallP articipant Record
* Find the calls made by the supplied p eer address
* @param address String the address of the p eer
* @return Collection of CallRecords with CallP eer Record
* @throws RuntimeException
* /
public Collection < CallRecord > findByPeer ( String address )