//post a message if the server supports a newer API version.
ApiVersion serverAPI = serverReg.getManagementApiVersion();
int supportedMajor = ApplicationRegistry.SUPPORTED_QPID_JMX_API_MAJOR_VERSION;
int supportedMinor = ApplicationRegistry.SUPPORTED_QPID_JMX_API_MINOR_VERSION;
if(serverAPI.greaterThan(supportedMajor, supportedMinor))
{
_form.setText("The server supports an updated management API and may offer " +
"functionality not available with this console. " +
"Please check for an updated console release.");
}