Uses of Class
org.apache.camel.api.management.ManagedOperation

Packages that use ManagedOperation
org.apache.camel.api.management.mbean Camel management MBeans API 
org.apache.camel.component.seda The SEDA Component for asynchronous SEDA exchanges on a BlockingQueue within a single CamelContext 
org.apache.camel.component.xslt The XSLT Component for transforming messages with XSLT 
org.apache.camel.processor.idempotent An implementation of the Idempotent Consumer pattern. 
 

Uses of ManagedOperation in org.apache.camel.api.management.mbean
 

Methods in org.apache.camel.api.management.mbean with annotations of type ManagedOperation
 void ManagedCamelContextMBean.addOrUpdateRoutesFromXml(String xml)
           
 String ManagedBrowsableEndpointMBean.browseAllMessagesAsXml(Boolean includeBody)
           
 String ManagedBrowsableEndpointMBean.browseExchange(Integer index)
           
 String ManagedBrowsableEndpointMBean.browseMessageAsXml(Integer index)
          Deprecated. use ManagedBrowsableEndpointMBean.browseAllMessagesAsXml(Boolean) instead
 String ManagedBrowsableEndpointMBean.browseMessageAsXml(Integer index, Boolean includeBody)
           
 String ManagedBrowsableEndpointMBean.browseMessageBody(Integer index)
           
 String ManagedBrowsableEndpointMBean.browseRangeMessagesAsXml(Integer fromIndex, Integer toIndex, Boolean includeBody)
           
 void ManagedResourceEndpointMBean.clearContentCache()
           
 void ManagedDelayerMBean.constantDelay(Integer millis)
           
 boolean ManagedCamelContextMBean.createEndpoint(String uri)
          Creates the endpoint by the given uri
 String ManagedRouteMBean.dumpRouteAsXml()
           
 String ManagedCamelContextMBean.dumpRoutesAsXml()
           
 String ManagedCamelContextMBean.dumpRoutesStatsAsXml(boolean fullStats, boolean includeProcessors)
           
 String ManagedRouteMBean.dumpRouteStatsAsXml(boolean fullStats, boolean includeProcessors)
           
 String ManagedPerformanceCounterMBean.dumpStatsAsXml(boolean fullStats)
           
 void ManagedProducerCacheMBean.purge()
           
 void ManagedConsumerCacheMBean.purge()
           
 void ManagedThreadPoolMBean.purge()
           
 void ManagedEndpointRegistryMBean.purge()
           
 long ManagedBrowsableEndpointMBean.queueSize()
           
 boolean ManagedRouteMBean.remove()
           
 int ManagedCamelContextMBean.removeEndpoints(String pattern)
          Removes the endpoint by the given pattern
 Object ManagedCamelContextMBean.requestBody(String endpointUri, Object body)
           
 Object ManagedCamelContextMBean.requestBodyAndHeaders(String endpointUri, Object body, Map<String,Object> headers)
           
 Object ManagedCamelContextMBean.requestStringBody(String endpointUri, String body)
           
 void ManagedCounterMBean.reset()
           
 void ManagedIdempotentConsumerMBean.resetDuplicateMessageCount()
           
 void ManagedProducerCacheMBean.resetStatistics()
           
 void ManagedConsumerCacheMBean.resetStatistics()
           
 void ManagedTypeConverterRegistryMBean.resetTypeConversionCounters()
           
 void ManagedSuspendableRouteMBean.resume()
           
 void ManagedServiceMBean.resume()
           
 void ManagedCamelContextMBean.resume()
           
 void ManagedCamelContextMBean.sendBody(String endpointUri, Object body)
           
 void ManagedCamelContextMBean.sendBodyAndHeaders(String endpointUri, Object body, Map<String,Object> headers)
           
 void ManagedCamelContextMBean.sendStringBody(String endpointUri, String body)
           
 void ManagedRouteMBean.shutdown()
          Deprecated. will be removed in the near future. Use stop and remove instead
 void ManagedRouteMBean.shutdown(long timeout)
          Deprecated. will be removed in the near future. Use stop and remove instead
 void ManagedServiceMBean.start()
           
 void ManagedCamelContextMBean.start()
           
 void ManagedProcessorMBean.start()
           
 void ManagedRouteMBean.start()
           
 void ManagedServiceMBean.stop()
           
 void ManagedCamelContextMBean.stop()
           
 void ManagedProcessorMBean.stop()
           
 void ManagedRouteMBean.stop()
           
 void ManagedRouteMBean.stop(long timeout)
           
 boolean ManagedRouteMBean.stop(Long timeout, Boolean abortAfterTimeout)
           
 void ManagedSuspendableRouteMBean.suspend()
           
 void ManagedServiceMBean.suspend()
           
 void ManagedCamelContextMBean.suspend()
           
 void ManagedSuspendableRouteMBean.suspend(long timeout)
           
 void ManagedRouteMBean.updateRouteFromXml(String xml)
           
 

Uses of ManagedOperation in org.apache.camel.component.seda
 

Methods in org.apache.camel.component.seda with annotations of type ManagedOperation
 String SedaEndpoint.browseAllMessagesAsXml(Boolean includeBody)
           
 String SedaEndpoint.browseExchange(Integer index)
           
 String SedaEndpoint.browseMessageAsXml(Integer index, Boolean includeBody)
           
 String SedaEndpoint.browseMessageBody(Integer index)
           
 String SedaEndpoint.browseRangeMessagesAsXml(Integer fromIndex, Integer toIndex, Boolean includeBody)
           
 void SedaEndpoint.purgeQueue()
          Purges the queue
 long SedaEndpoint.queueSize()
           
 

Uses of ManagedOperation in org.apache.camel.component.xslt
 

Methods in org.apache.camel.component.xslt with annotations of type ManagedOperation
 void XsltEndpoint.clearCachedStylesheet()
           
 

Uses of ManagedOperation in org.apache.camel.processor.idempotent
 

Methods in org.apache.camel.processor.idempotent with annotations of type ManagedOperation
 boolean MemoryIdempotentRepository.add(String key)
           
 boolean FileIdempotentRepository.add(String key)
           
 boolean MemoryIdempotentRepository.contains(String key)
           
 boolean FileIdempotentRepository.contains(String key)
           
 boolean MemoryIdempotentRepository.remove(String key)
           
 boolean FileIdempotentRepository.remove(String key)
           
 void FileIdempotentRepository.reset()
          Reset and clears the store to force it to reload from file
 



Apache CAMEL