org.switchyard.component.camel.model.v1.V1CamelComponentModelMarshaller Maven / Gradle / Ivy
/*
* 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.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.ComponentImplementationModel;
/**
* Camel component marshaller.
*/
public class V1CamelComponentModelMarshaller extends V1BaseCamelMarshaller {
private static final String IMPLEMENTATION_CAMEL = ComponentImplementationModel.IMPLEMENTATION + '.' + V1CamelImplementationModel.CAMEL;
/**
* Creates new marshaller.
*
* @param desc Descriptor
*/
public V1CamelComponentModelMarshaller(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 (IMPLEMENTATION_CAMEL.equals(name)) {
return new V1CamelImplementationModel(config, desc);
}
return super.read(config);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy