@HandlerOutput(name="Properties", type=Map.class)})
public static void getEjbMdbSettings(HandlerContext handlerCtx) {
String configName = (String) handlerCtx.getInputValue("ConfigName");
ConfigConfig config = AMXUtil.getConfig(configName);
MDBContainerConfig mdbConfig = config.getMDBContainerConfig();
String minSize = mdbConfig.getSteadyPoolSize();
String maxSize = mdbConfig.getMaxPoolSize();
String poolResize = mdbConfig.getPoolResizeQuantity();
String timeout = mdbConfig.getIdleTimeoutInSeconds();
Map<String, String> props = mdbConfig.getProperties();
handlerCtx.setOutputValue("MinSize", minSize);
handlerCtx.setOutputValue("MaxSize", maxSize);
handlerCtx.setOutputValue("PoolResize", poolResize);
handlerCtx.setOutputValue("Timeout", timeout);
handlerCtx.setOutputValue("Properties", props);