web/servicemix-console/src/main/java/org/apache/servicemix/console/JBIContainerPortlet.java [75:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String getAttribute(ObjectName name, String attribute) {
        try {
            return (String) getServerConnection().getAttribute(name, attribute);
        } catch (Exception e) {
            LOGGER.error("Could not retrieve attribute '" + attribute + "' for mbean '" + name + "'");
            return null;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



web/servicemix-console/src/main/java/org/apache/servicemix/console/JBIComponentsPortlet.java [118:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	    protected String getAttribute(ObjectName name, String attribute) {
	        try {
	            return (String) getServerConnection().getAttribute(name, attribute);
	        } catch (Exception e) {
	            LOGGER.error("Could not retrieve attribute '" + attribute + "' for mbean '" + name + "'");
	            return null;
	        }
	    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



