org.apache.camel.api.management.mbean
Interface ManagedTypeConverterRegistryMBean

All Superinterfaces:
ManagedServiceMBean
All Known Implementing Classes:
ManagedTypeConverterRegistry

public interface ManagedTypeConverterRegistryMBean
extends ManagedServiceMBean


Method Summary
 long getAttemptCounter()
           
 long getFailedCounter()
           
 long getHitCounter()
           
 long getMissCounter()
           
 void resetTypeConversionCounters()
           
 
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedServiceMBean
getCamelId, getRouteId, getState, isSupportSuspension, isSuspended, resume, start, stop, suspend
 

Method Detail

getAttemptCounter

@ManagedAttribute(description="Number of type conversion attempts")
long getAttemptCounter()

getHitCounter

@ManagedAttribute(description="Number of type conversion hits (successful conversions)")
long getHitCounter()

getMissCounter

@ManagedAttribute(description="Number of type conversion misses (no suitable type converter)")
long getMissCounter()

getFailedCounter

@ManagedAttribute(description="Number of type conversion failures (failed conversions)")
long getFailedCounter()

resetTypeConversionCounters

@ManagedOperation(description="Resets the type conversion counters")
void resetTypeConversionCounters()


Apache CAMEL