/**
* MBean server.
*/
- protected MBeanServer mBeanServer = null;
- protected Registry registry;
+ protected transient MBeanServer mBeanServer = null;
+ protected transient Registry registry;
// --------------------------------------------------------- Public Methods
/**
ExceptionUtils.handleThrowable(t);
}
}
- } catch (Exception e) {
- // Ignore
+ } catch (Throwable t) {
+ ExceptionUtils.handleThrowable(t);
}
writer.println();
}
sb.append( value.substring(pos,end));
}
- public boolean isSupported( String type ) {
+ /**
+ * Determines if a type is supported by the {@link JMXProxyServlet}.
+ *
+ * @param type The type to check
+ * @return Always returns <code>true</code>
+ */
+ public boolean isSupported(String type) {
return true;
}
}