Examples of explainEndpointJson()


Examples of org.apache.camel.CamelContext.explainEndpointJson()

    public String explainEndpoint(String camelContextName, String uri, boolean allOptions) throws Exception {
        CamelContext context = this.getCamelContext(camelContextName);
        if (context == null) {
            return null;
        }
        return context.explainEndpointJson(uri, allOptions);
    }

    public List<Map<String, String>> listComponents(String camelContextName) throws Exception {
        CamelContext context = this.getCamelContext(camelContextName);
        if (context == null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.