Interface FailedOpenURLTrackerService
-
- All Known Implementing Classes:
FailedOpenURLTrackerServiceImpl
public interface FailedOpenURLTrackerServiceInterface of the service that handles the OpenURLTracker database operations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OpenURLTrackercreate(Context context)Creates a new OpenURLTrackerList<OpenURLTracker>findAll(Context context)Returns all OpenURLTrackers from the databasevoidremove(Context context, OpenURLTracker openURLTracker)Removes an OpenURLTracker from the database
-
-
-
Method Detail
-
remove
void remove(Context context, OpenURLTracker openURLTracker) throws SQLException
Removes an OpenURLTracker from the database- Parameters:
context-openURLTracker-- Throws:
SQLException
-
findAll
List<OpenURLTracker> findAll(Context context) throws SQLException
Returns all OpenURLTrackers from the database- Parameters:
context-- Returns:
- all OpenURLTrackers
- Throws:
SQLException
-
create
OpenURLTracker create(Context context) throws SQLException
Creates a new OpenURLTracker- Parameters:
context-- Returns:
- the creatred OpenURLTracker
- Throws:
SQLException
-
-