Package org.switchyard.component.camel.sql.model.v1

Source Code of org.switchyard.component.camel.sql.model.v1.V1CamelSqlModelMarshaller

/*
* Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, 
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.switchyard.component.camel.sql.model.v1;

import org.switchyard.component.camel.common.model.v1.V1BaseCamelMarshaller;
import org.switchyard.config.Configuration;
import org.switchyard.config.model.Descriptor;
import org.switchyard.config.model.Model;
import org.switchyard.config.model.composite.BindingModel;

/**
* Sql model marshaller.
*/
public class V1CamelSqlModelMarshaller extends V1BaseCamelMarshaller {

    private static final String BINDING_SQL = BindingModel.BINDING + '.' + V1CamelSqlBindingModel.SQL;

    /**
     * Creates new marshaller.
     *
     * @param desc Descriptor
     */
    public V1CamelSqlModelMarshaller(Descriptor desc) {
        super(desc);
    }

    /**
     * Reads in the Configuration, looking for various knowledge models.
     * If not found, it falls back to the super class (V1BaseCamelMarshaller).
     *
     * @param config the Configuration
     * @return the Model
     */
    @Override
    public Model read(Configuration config) {
        String name = config.getName();
        Descriptor desc = getDescriptor();
        if (BINDING_SQL.equals(name)) {
            return new V1CamelSqlBindingModel(config, desc);
        }
        return super.read(config);
    }

}
TOP

Related Classes of org.switchyard.component.camel.sql.model.v1.V1CamelSqlModelMarshaller

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.