Package org.switchyard.config.model

Examples of org.switchyard.config.model.Descriptor$DescriptorLSResourceResolver


     * @param config the configuration
     * @return the HTTP Binding Model
     */
    @Override
    public Model read(Configuration config) {
        Descriptor desc = getDescriptor();
        String name = config.getName();
        if (name.startsWith(BindingModel.BINDING)) {
            return new V1HttpBindingModel(config, getDescriptor());
        } else if (name.equals(ContextMapperModel.CONTEXT_MAPPER)) {
            return new V1ContextMapperModel(config, getDescriptor());
View Full Code Here


     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (IMPLEMENTATION_RULES.equals(name)) {
            return new V1RulesComponentImplementationModel(config, desc);
        } else if (OPERATION.equals(name)) {
            return new V1RulesOperationModel(config, desc);
        }
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_JMS.equals(name)) {
            return new V1CamelJmsBindingModel(config, desc);
        }
        return super.read(config);
    }
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_MQTT.equals(name)) {
            return new V2CamelMqttBindingModel(config, desc);
        }
        return super.read(config);
    }
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_CXF.equals(name)) {
            return new V2CamelCxfBindingModel(config, desc);
        }
        return super.read(config);
    }
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_URI.equals(name)) {
            return new V1CamelUriBindingModel(config, desc);
        } else if (BINDING_DIRECT.equals(name)) {
            return new V1CamelDirectBindingModel(config, desc);
        } else if (BINDING_TIMER.equals(name)) {
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_QUARTZ.equals(name)) {
            return new V1CamelQuartzBindingModel(config, desc);
        }
        return super.read(config);
    }
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_QUARTZ.equals(name)) {
            return new V2CamelQuartzBindingModel(config, desc);
        }
        return super.read(config);
    }
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_ATOM.equals(name)) {
            return new V1CamelAtomBindingModel(config, desc);
        }
        return super.read(config);
    }
View Full Code Here

     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (IMPLEMENTATION_CAMEL.equals(name)) {
            return new V1CamelImplementationModel(config, desc);
        }
        return super.read(config);
    }
View Full Code Here

TOP

Related Classes of org.switchyard.config.model.Descriptor$DescriptorLSResourceResolver

Copyright © 2018 www.massapicom. 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.