I have an MXBean that returns an attribute containing Set<UUID>
.
When JConsole shows a UUID it treats it as composite data with two attributes - leastSignificantBits
and mostSignifitcantBits
.
Instead of changing my MXBean to return Set<String>
is there some method (involving the server-side only) that would override the defaults and show the UUID in JConsole as if toString()
had been called?