// Get the list of PIDs.
Iterator<String> pids = getPidIterator(parms, objectSource);
// Go through the list, validating.
ObjectValidator validator = new ObjectValidator(objectSource);
while (pids.hasNext()) {
results.record(validator.validate(pids.next()));
}
// Display the results.
results.closeResults();
} catch (ValidatorProcessUsageException e) {