/*
* retrieve all account info requests without fromDate query. This will
* retrieve all requests made in the last 3 weeks.
*/
LOGGER.log(Level.INFO, "\n-------------retrieveAllAccountInfoRequests-------------");
entries = service.retrieveAllAccountInfoRequests(null);
for (GenericEntry entry : entries) {
LOGGER.log(Level.INFO, entry.getAllProperties().toString());
}
LOGGER.log(Level.INFO, "\n-------------deleteAccountInfoRequest-------------");