Interface ManagedComponentMBean
-
public interface ManagedComponentMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCamelId()
String
getCamelManagementName()
String
getComponentName()
String
getState()
boolean
isVerifySupported()
ComponentVerifierExtension.Result
verify(String scope, Map<String,String> options)
-
-
-
Method Detail
-
getComponentName
@ManagedAttribute(description="Component Name") String getComponentName()
-
getState
@ManagedAttribute(description="Component State") String getState()
-
getCamelId
@ManagedAttribute(description="Camel ID") String getCamelId()
-
getCamelManagementName
@ManagedAttribute(description="Camel ManagementName") String getCamelManagementName()
-
isVerifySupported
@ManagedAttribute(description="Whether this component support verification (parameters or connectivity)") boolean isVerifySupported()
-
verify
@ManagedOperation(description="Verify options against a given scope") ComponentVerifierExtension.Result verify(String scope, Map<String,String> options)
-
-