Description
Is it a bug that ManagedEndpoint.getTransportId() just return the endpoint's address. I would expect it return endpoint.getTransportId()
ManagedEndpoint{ @ManagedAttribute(description = "TransportId Attribute", currencyTimeLimit = 60) public String getTransportId() { return endpoint.getEndpointInfo().getAddress(); } @ManagedAttribute(description = "Address Attribute", currencyTimeLimit = 60) public String getAddress() { return endpoint.getEndpointInfo().getAddress(); } }