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

All Known Implementing Classes:
ManagedTracer

public interface ManagedTracerMBean


Method Summary
 String getDestinationUri()
           
 boolean getEnabled()
           
 int getFormatterBreadCrumbLength()
           
 int getFormatterMaxChars()
           
 int getFormatterNodeLength()
           
 boolean getFormatterShowBody()
           
 boolean getFormatterShowBodyType()
           
 boolean getFormatterShowBreadCrumb()
           
 boolean getFormatterShowException()
           
 boolean getFormatterShowExchangeId()
           
 boolean getFormatterShowExchangePattern()
           
 boolean getFormatterShowHeaders()
           
 boolean getFormatterShowNode()
           
 boolean getFormatterShowOutBody()
           
 boolean getFormatterShowOutBodyType()
           
 boolean getFormatterShowOutHeaders()
           
 boolean getFormatterShowProperties()
           
 boolean getFormatterShowRouteId()
           
 boolean getFormatterShowShortExchangeId()
           
 String getLogLevel()
           
 String getLogName()
           
 boolean getLogStackTrace()
           
 int getTraceBodySize()
           
 boolean getTraceExceptions()
           
 boolean getTraceInterceptors()
           
 boolean getTraceOutExchanges()
           
 boolean getUseJpa()
           
 boolean isJmxTraceNotifications()
           
 void setDestinationUri(String uri)
           
 void setEnabled(boolean enabled)
           
 void setFormatterBreadCrumbLength(int breadCrumbLength)
           
 void setFormatterMaxChars(int maxChars)
           
 void setFormatterNodeLength(int nodeLength)
           
 void setFormatterShowBody(boolean showBody)
           
 void setFormatterShowBodyType(boolean showBodyType)
           
 void setFormatterShowBreadCrumb(boolean showBreadCrumb)
           
 void setFormatterShowException(boolean showException)
           
 void setFormatterShowExchangeId(boolean showExchangeId)
           
 void setFormatterShowExchangePattern(boolean showExchangePattern)
           
 void setFormatterShowHeaders(boolean showHeaders)
           
 void setFormatterShowNode(boolean showNode)
           
 void setFormatterShowOutBody(boolean showOutBody)
           
 void setFormatterShowOutBodyType(boolean showOutBodyType)
           
 void setFormatterShowOutHeaders(boolean showOutHeaders)
           
 void setFormatterShowProperties(boolean showProperties)
           
 void setFormatterShowRouteId(boolean showRouteId)
           
 void setFormatterShowShortExchangeId(boolean showShortExchangeId)
           
 void setJmxTraceNotifications(boolean jmxTraceNotifications)
           
 void setLogLevel(String logLevel)
           
 void setLogName(String logName)
           
 void setLogStackTrace(boolean logStackTrace)
           
 void setTraceBodySize(int traceBodySize)
           
 void setTraceExceptions(boolean traceExceptions)
           
 void setTraceInterceptors(boolean traceInterceptors)
           
 void setTraceOutExchanges(boolean traceOutExchanges)
           
 

Method Detail

getEnabled

@ManagedAttribute(description="Tracer enabled")
boolean getEnabled()

setEnabled

@ManagedAttribute(description="Tracer enabled")
void setEnabled(boolean enabled)

getDestinationUri

@ManagedAttribute(description="Additional destination URI")
String getDestinationUri()

setDestinationUri

@ManagedAttribute(description="Additional destination URI")
void setDestinationUri(String uri)

getLogName

@ManagedAttribute(description="Logging Name")
String getLogName()

getUseJpa

@ManagedAttribute(description="Using JPA")
boolean getUseJpa()

setLogName

@ManagedAttribute(description="Logging Name")
void setLogName(String logName)

getLogLevel

@ManagedAttribute(description="Logging Level")
String getLogLevel()

setLogLevel

@ManagedAttribute(description="Logging Level")
void setLogLevel(String logLevel)

getLogStackTrace

@ManagedAttribute(description="Log Stacktrace")
boolean getLogStackTrace()

setLogStackTrace

@ManagedAttribute(description="Log Stacktrace")
void setLogStackTrace(boolean logStackTrace)

getTraceInterceptors

@ManagedAttribute(description="Trace Interceptors")
boolean getTraceInterceptors()

setTraceInterceptors

@ManagedAttribute(description="Trace Interceptors")
void setTraceInterceptors(boolean traceInterceptors)

getTraceExceptions

@ManagedAttribute(description="Trace Exceptions")
boolean getTraceExceptions()

setTraceExceptions

@ManagedAttribute(description="Trace Exceptions")
void setTraceExceptions(boolean traceExceptions)

getTraceOutExchanges

@ManagedAttribute(description="Trace Out Exchanges")
boolean getTraceOutExchanges()

setTraceOutExchanges

@ManagedAttribute(description="Trace Out Exchanges")
void setTraceOutExchanges(boolean traceOutExchanges)

getFormatterShowBody

@ManagedAttribute(description="Formatter show body")
boolean getFormatterShowBody()

setFormatterShowBody

@ManagedAttribute(description="Formatter show body")
void setFormatterShowBody(boolean showBody)

getFormatterShowBodyType

@ManagedAttribute(description="Formatter show body type")
boolean getFormatterShowBodyType()

setFormatterShowBodyType

@ManagedAttribute(description="Formatter show body type")
void setFormatterShowBodyType(boolean showBodyType)

getFormatterShowOutBody

@ManagedAttribute(description="Formatter show out body")
boolean getFormatterShowOutBody()

setFormatterShowOutBody

@ManagedAttribute(description="Formatter show out body")
void setFormatterShowOutBody(boolean showOutBody)

getFormatterShowOutBodyType

@ManagedAttribute(description="Formatter show out body type")
boolean getFormatterShowOutBodyType()

setFormatterShowOutBodyType

@ManagedAttribute(description="Formatter show out body type")
void setFormatterShowOutBodyType(boolean showOutBodyType)

getFormatterShowBreadCrumb

@ManagedAttribute(description="Formatter show breadcrumb")
boolean getFormatterShowBreadCrumb()

setFormatterShowBreadCrumb

@ManagedAttribute(description="Formatter show breadcrumb")
void setFormatterShowBreadCrumb(boolean showBreadCrumb)

getFormatterShowExchangeId

@ManagedAttribute(description="Formatter show exchange ID")
boolean getFormatterShowExchangeId()

setFormatterShowExchangeId

@ManagedAttribute(description="Formatter show exchange ID")
void setFormatterShowExchangeId(boolean showExchangeId)

getFormatterShowHeaders

@ManagedAttribute(description="Formatter show headers")
boolean getFormatterShowHeaders()

setFormatterShowHeaders

@ManagedAttribute(description="Formatter show headers")
void setFormatterShowHeaders(boolean showHeaders)

getFormatterShowOutHeaders

@ManagedAttribute(description="Formatter show out headers")
boolean getFormatterShowOutHeaders()

setFormatterShowOutHeaders

@ManagedAttribute(description="Formatter show out headers")
void setFormatterShowOutHeaders(boolean showOutHeaders)

getFormatterShowProperties

@ManagedAttribute(description="Formatter show properties")
boolean getFormatterShowProperties()

setFormatterShowProperties

@ManagedAttribute(description="Formatter show properties")
void setFormatterShowProperties(boolean showProperties)

getFormatterShowNode

@ManagedAttribute(description="Formatter show node")
boolean getFormatterShowNode()

setFormatterShowNode

@ManagedAttribute(description="Formatter show node")
void setFormatterShowNode(boolean showNode)

getFormatterShowExchangePattern

@ManagedAttribute(description="Formatter show exchange pattern")
boolean getFormatterShowExchangePattern()

setFormatterShowExchangePattern

@ManagedAttribute(description="Formatter show exchange pattern")
void setFormatterShowExchangePattern(boolean showExchangePattern)

getFormatterShowException

@ManagedAttribute(description="Formatter show exception")
boolean getFormatterShowException()

setFormatterShowException

@ManagedAttribute(description="Formatter show exception")
void setFormatterShowException(boolean showException)

getFormatterShowRouteId

@ManagedAttribute(description="Formatter show route ID")
boolean getFormatterShowRouteId()

setFormatterShowRouteId

@ManagedAttribute(description="Formatter show route ID")
void setFormatterShowRouteId(boolean showRouteId)

getFormatterBreadCrumbLength

@ManagedAttribute(description="Formatter breadcrumb length")
int getFormatterBreadCrumbLength()

setFormatterBreadCrumbLength

@ManagedAttribute(description="Formatter breadcrumb length")
void setFormatterBreadCrumbLength(int breadCrumbLength)

getFormatterShowShortExchangeId

@ManagedAttribute(description="Formatter show short exchange ID")
boolean getFormatterShowShortExchangeId()

setFormatterShowShortExchangeId

@ManagedAttribute(description="Formatter show short exchange ID")
void setFormatterShowShortExchangeId(boolean showShortExchangeId)

getFormatterNodeLength

@ManagedAttribute(description="Formatter node length")
int getFormatterNodeLength()

setFormatterNodeLength

@ManagedAttribute(description="Formatter node length")
void setFormatterNodeLength(int nodeLength)

getFormatterMaxChars

@ManagedAttribute(description="Formatter max chars")
int getFormatterMaxChars()

setFormatterMaxChars

@ManagedAttribute(description="Formatter max chars")
void setFormatterMaxChars(int maxChars)

isJmxTraceNotifications

@ManagedAttribute(description="Should trace events be sent as JMX notifications")
boolean isJmxTraceNotifications()

setJmxTraceNotifications

@ManagedAttribute(description="Should trace events be sent as JMX notifications")
void setJmxTraceNotifications(boolean jmxTraceNotifications)

getTraceBodySize

@ManagedAttribute(description="Maximum size of a message body for trace notification")
int getTraceBodySize()

setTraceBodySize

@ManagedAttribute(description="Maximum size of a message body for trace notification")
void setTraceBodySize(int traceBodySize)


Apache CAMEL