keysOwned.setFromKey(null);
keysOwned.setToKey(item.getToKey());
item.setKeysOwned(keysOwned);
// determine and set the assertions 'completionStatus'
CompletionStatus status = null;
boolean fromCheck =
new Boolean(resultSet.getString(6)).booleanValue();//("FROM_CHECK"));
boolean toCheck =
new Boolean(resultSet.getString(7)).booleanValue();//("TO_CHECK"));
if ((fromCheck) && (toCheck))
status = new CompletionStatus(CompletionStatus.COMPLETE);
else if ((fromCheck) && (!toCheck))
status = new CompletionStatus(CompletionStatus.TOKEY_INCOMPLETE);
else if ((!fromCheck) && (toCheck))
status = new CompletionStatus(CompletionStatus.FROMKEY_INCOMPLETE);
item.setCompletionStatus(status);
// add the assertionStatusItem
itemList.addElement(item);
}