public interface CallLogServiceInterface
Modifier and Type | Method and Description |
---|---|
void |
remove(java.lang.String calllogId)
This method removes the call log and returns true, if the valid id is given, otherwise returns false.
|
void |
removeAll()
Remove all call logs, if succeeded returns true, otherwise false.
|
java.util.List<CallLogEntryInterface> |
retrieve(int startIndex,
int count)
This method returns call logs with beginning the given startIndex to the count size .
|
java.util.List<CallLogEntryInterface> |
retrieveAll()
This method returns all call logs.
|
void remove(java.lang.String calllogId)
calllogId
- void removeAll()
java.util.List<CallLogEntryInterface> retrieve(int startIndex, int count)
startIndex
- count
- CallLogEntryInterface
>java.util.List<CallLogEntryInterface> retrieveAll()
CallLogEntryInterface
>