-
Feature Request
-
Resolution: Obsolete
-
Major
-
None
-
None
We have an adminView notion on the ManagementProperty, but we don't have a way to query for the ManagedComponents and the associated ManagedPropertys that match a given admin use. For example, something like:
Class AdminViewPair
{
ManagedComponent comp;
Collection<String> propertyNames;
}
Collection<AdminViewPair> pairs = managmentView.matchComponentsForAdminView("Port");
for(AdminViewPair pair : pairs)
{
for(String propertyName : pair.propertyNames)
}