if (uniqueId.trim().equals(""))
throw new IllegalArgumentException("UniqueId is empty");
if (!jndiMappings.containsKey(uniqueId))
throw new NotFoundException(bundle.keyNotRegistered(uniqueId));
Map<String, List<String>> mappings = jndiMappings.get(uniqueId);
if (mappings == null)
return Collections.unmodifiableMap(new HashMap<String, List<String>>(0));