* @param name Name of the entity.
* @return Found managed entity in success or null in failure.
*/
protected ManagedEntity searchManagedEntity(String type, String name)
{
ManagedEntity ret = null;
try {
ret = new InventoryNavigator
(rootFolder_).searchManagedEntity(type, name);
} catch (Exception e) { /* InvalidProperty, RuntimeFault, RemoteException */
logger_.warning(Utility.toString(e));