public RepositoryEnumeration enumerateDeviceTACs(
RepositoryConnection connection) throws RepositoryException {
Collection tacPairs = new ArrayList();
TacIdentification tacIdentification = loadTacIdentification();
if (tacIdentification != null) {
Iterator entries = tacIdentification.entries();
while (entries.hasNext()) {
TacIdentificationEntry entry = (TacIdentificationEntry)
entries.next();
String deviceName = entry.getDeviceName();
Iterator numbers = entry.numbers();