blob: cc9f895cf4c99e96af0a93b42fa32dfa0ee2481d [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.sjms.springboot;
import javax.jms.ConnectionFactory;
import org.apache.camel.component.sjms.TransactionCommitStrategy;
import org.apache.camel.component.sjms.jms.ConnectionResource;
import org.apache.camel.component.sjms.jms.DestinationCreationStrategy;
import org.apache.camel.component.sjms.jms.JmsKeyFormatStrategy;
import org.apache.camel.component.sjms.jms.MessageCreatedStrategy;
import org.apache.camel.spi.HeaderFilterStrategy;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
/**
* The sjms component (simple jms) allows messages to be sent to (or consumed
* from) a JMS Queue or Topic.
*
* Generated by camel-package-maven-plugin - do not edit this file!
*/
@ConfigurationProperties(prefix = "camel.component.sjms")
public class SjmsComponentConfiguration {
/**
* A ConnectionFactory is required to enable the SjmsComponent. It can be
* set directly or set set as part of a ConnectionResource.
*/
private ConnectionFactory connectionFactory;
/**
* To use a custom HeaderFilterStrategy to filter header to and from Camel
* message.
*/
@NestedConfigurationProperty
private HeaderFilterStrategy headerFilterStrategy;
/**
* A ConnectionResource is an interface that allows for customization and
* container control of the ConnectionFactory. See Plugable Connection
* Resource Management for further details.
*/
@NestedConfigurationProperty
private ConnectionResource connectionResource;
/**
* The maximum number of connections available to endpoints started under
* this component
*/
private Integer connectionCount;
/**
* Pluggable strategy for encoding and decoding JMS keys so they can be
* compliant with the JMS specification. Camel provides one implementation
* out of the box: default. The default strategy will safely marshal dots
* and hyphens (. and -). Can be used for JMS brokers which do not care
* whether JMS header keys contain illegal characters. You can provide your
* own implementation of the
* org.apache.camel.component.jms.JmsKeyFormatStrategy and refer to it using
* the notation.
*/
@NestedConfigurationProperty
private JmsKeyFormatStrategy jmsKeyFormatStrategy;
/**
* To configure which kind of commit strategy to use. Camel provides two
* implementations out of the box default and batch.
*/
@NestedConfigurationProperty
private TransactionCommitStrategy transactionCommitStrategy;
/**
* To use a custom DestinationCreationStrategy.
*/
@NestedConfigurationProperty
private DestinationCreationStrategy destinationCreationStrategy;
/**
* To use a custom TimedTaskManager
*/
private TimedTaskManagerNestedConfiguration timedTaskManager;
/**
* To use the given MessageCreatedStrategy which are invoked when Camel
* creates new instances of javax.jms.Message objects when Camel is sending
* a JMS message.
*/
@NestedConfigurationProperty
private MessageCreatedStrategy messageCreatedStrategy;
public ConnectionFactory getConnectionFactory() {
return connectionFactory;
}
public void setConnectionFactory(ConnectionFactory connectionFactory) {
this.connectionFactory = connectionFactory;
}
public HeaderFilterStrategy getHeaderFilterStrategy() {
return headerFilterStrategy;
}
public void setHeaderFilterStrategy(
HeaderFilterStrategy headerFilterStrategy) {
this.headerFilterStrategy = headerFilterStrategy;
}
public ConnectionResource getConnectionResource() {
return connectionResource;
}
public void setConnectionResource(ConnectionResource connectionResource) {
this.connectionResource = connectionResource;
}
public Integer getConnectionCount() {
return connectionCount;
}
public void setConnectionCount(Integer connectionCount) {
this.connectionCount = connectionCount;
}
public JmsKeyFormatStrategy getJmsKeyFormatStrategy() {
return jmsKeyFormatStrategy;
}
public void setJmsKeyFormatStrategy(
JmsKeyFormatStrategy jmsKeyFormatStrategy) {
this.jmsKeyFormatStrategy = jmsKeyFormatStrategy;
}
public TransactionCommitStrategy getTransactionCommitStrategy() {
return transactionCommitStrategy;
}
public void setTransactionCommitStrategy(
TransactionCommitStrategy transactionCommitStrategy) {
this.transactionCommitStrategy = transactionCommitStrategy;
}
public DestinationCreationStrategy getDestinationCreationStrategy() {
return destinationCreationStrategy;
}
public void setDestinationCreationStrategy(
DestinationCreationStrategy destinationCreationStrategy) {
this.destinationCreationStrategy = destinationCreationStrategy;
}
public TimedTaskManagerNestedConfiguration getTimedTaskManager() {
return timedTaskManager;
}
public void setTimedTaskManager(
TimedTaskManagerNestedConfiguration timedTaskManager) {
this.timedTaskManager = timedTaskManager;
}
public MessageCreatedStrategy getMessageCreatedStrategy() {
return messageCreatedStrategy;
}
public void setMessageCreatedStrategy(
MessageCreatedStrategy messageCreatedStrategy) {
this.messageCreatedStrategy = messageCreatedStrategy;
}
public static class TimedTaskManagerNestedConfiguration {
public static final Class CAMEL_NESTED_CLASS = org.apache.camel.component.sjms.taskmanager.TimedTaskManager.class;
}
}