Interface ManagedValidatorRegistryMBean
-
- All Superinterfaces:
ManagedServiceMBean
public interface ManagedValidatorRegistryMBean extends ManagedServiceMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetDynamicSize()IntegergetMaximumCacheSize()IntegergetSize()StringgetSource()IntegergetStaticSize()TabularDatalistValidators()voidpurge()-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedServiceMBean
getCamelId, getCamelManagementName, getRouteId, getServiceType, getState, isStaticService, isSupportSuspension, isSuspended, resume, start, stop, suspend
-
-
-
-
Method Detail
-
getSource
@ManagedAttribute(description="Source") String getSource()
-
getDynamicSize
@ManagedAttribute(description="Number of dynamic validators cached") Integer getDynamicSize()
-
getStaticSize
@ManagedAttribute(description="Number of static validators cached") Integer getStaticSize()
-
getSize
@ManagedAttribute(description="Number of total validators cached") Integer getSize()
-
getMaximumCacheSize
@ManagedAttribute(description="Maximum cache size (capacity)") Integer getMaximumCacheSize()
-
purge
@ManagedOperation(description="Purges the cache") void purge()
-
listValidators
@ManagedOperation(description="Lists all the validators in the registry") TabularData listValidators()
-
-