/*
* Lookup all jboss.web:type=GlobalRequestProcessor,* MBeans in order to associate them later with the
* corresponding jboss.web:type=Connector,* primary connector MBeans.
*/
EmsConnection connection = context.getParentResourceComponent().getEmsConnection();
ObjectNameQueryUtility queryUtility = new ObjectNameQueryUtility(
"jboss.web:type=GlobalRequestProcessor,name=%name%");
List<EmsBean> beans = connection.queryBeans(queryUtility.getTranslatedQuery());
// We can't populate the name and scheme in the plugin config if the GlobalRequestProcessor MBeans aren't
// deployed yet, so just abort and try again the next time the PC calls us.
if (beans.size() != resourceDetails.size()) {
if (log.isDebugEnabled())