}
public RegistryEntry getEntry(String registryName, String entryName)
{
RegistryEntry entry = null;
Registry registry = (Registry)dbRegistries.get(registryName);
if (null == registry)
{
if (hybrid)
{
return super.getEntry(registryName, entryName);
}
return null;
}
try
{
entry = registry.getEntry(entryName);
}
catch (RegistryException iee)
{
if (logger.isInfoEnabled())
{