blob: 7f9bf9424982db5b76103ad5f4332d8efa516906 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.component.bean;
import org.apache.camel.Component;
import org.apache.camel.ExchangePattern;
import org.apache.camel.Processor;
import org.apache.camel.impl.ProcessorEndpoint;
/**
* Endpoint for the bean component.
*
* @version
*/
public class BeanEndpoint extends ProcessorEndpoint {
private boolean cache;
private boolean multiParameterArray;
private String beanName;
private String method;
private BeanHolder beanHolder;
public BeanEndpoint() {
init();
}
public BeanEndpoint(String endpointUri) {
super(endpointUri);
init();
}
public BeanEndpoint(String endpointUri, BeanProcessor processor) {
super(endpointUri, processor);
init();
}
public BeanEndpoint(String endpointUri, Component component, BeanProcessor processor) {
super(endpointUri, component, processor);
init();
}
public BeanEndpoint(String endpointUri, Component component) {
super(endpointUri, component);
init();
}
// Properties
//-------------------------------------------------------------------------
public String getBeanName() {
return beanName;
}
public void setBeanName(String beanName) {
this.beanName = beanName;
}
public boolean isMultiParameterArray() {
return multiParameterArray;
}
public void setMultiParameterArray(boolean mpArray) {
multiParameterArray = mpArray;
}
public boolean isCache() {
return cache;
}
public void setCache(boolean cache) {
this.cache = cache;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
public BeanHolder getBeanHolder() {
return beanHolder;
}
public void setBeanHolder(BeanHolder beanHolder) {
this.beanHolder = beanHolder;
}
// Implementation methods
//-------------------------------------------------------------------------
@Override
protected String createEndpointUri() {
return "bean:" + getBeanName() + (method != null ? "?method=" + method : "");
}
private void init() {
setExchangePattern(ExchangePattern.InOut);
}
@Override
protected Processor createProcessor() throws Exception {
BeanHolder holder = getBeanHolder();
if (holder == null) {
RegistryBean registryBean = new RegistryBean(getCamelContext(), beanName);
if (cache) {
holder = registryBean.createCacheHolder();
} else {
holder = registryBean;
}
}
BeanProcessor processor = new BeanProcessor(holder);
if (method != null) {
processor.setMethod(method);
}
processor.setMultiParameterArray(isMultiParameterArray());
return processor;
}
}