* Revokes the current user's token and removes it from the data store.
*/
public void revokeToken() {
String userId = userService.getCurrentUser().getUserId();
UserToken tmpUserToken = tokenDao.retrieveTokenById(userId);
authService.revokeToken(tmpUserToken);
tokenDao.removeTokenById(userId);
}