Author: jbonofre
Date: Thu Aug 19 08:13:34 2010
New Revision: 987067
URL: http://svn.apache.org/viewvc?rev=987067&view=rev
Log:
Resuming xbean comments.
Modified:
servicemix/archetypes/trunk/servicemix-http-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
servicemix/archetypes/trunk/servicemix-jms-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
servicemix/archetypes/trunk/servicemix-jsr181-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/pom.xml
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
Modified:
servicemix/archetypes/trunk/servicemix-http-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL:
http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-http-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=987067&r1=987066&r2=987067&view=diff
==============================================================================
---
servicemix/archetypes/trunk/servicemix-http-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
(original)
+++
servicemix/archetypes/trunk/servicemix-http-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
Thu Aug 19 08:13:34 2010
@@ -20,6 +20,8 @@
- all MEPs as consumers or providers
- SSL
- WS-Security
+
+ http://servicemix.apache.org/servicemix-http.html
-->
<!-- BEGIN SNIPPET: http-consumer -->
Modified:
servicemix/archetypes/trunk/servicemix-jms-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL:
http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-jms-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=987067&r1=987066&r2=987067&view=diff
==============================================================================
---
servicemix/archetypes/trunk/servicemix-jms-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
(original)
+++
servicemix/archetypes/trunk/servicemix-jms-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
Thu Aug 19 08:13:34 2010
@@ -8,9 +8,69 @@
xsi:schemaLocation="
http://servicemix.apache.org/jms/1.0
http://servicemix.apache.org/schema/servicemix-j...@{components.version}.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
- http://activemq.org/config/1.0
http://activemq.apache.org/schema/core/activemq-co...@{activemq-version}.xsd">
+ http://activemq.org/config/1.0
http://activemq.apache.org/schema/core/activemq-co...@{activemq.version}.xsd">
+
+ <!--
+ The ServiceMix JMS component integrates JMS in the JBI bus.
+ It supports:
+ - SOAP 1.1 and 1.2
+ - MIME attachments
+ - WS-Addressing
+ - WSDL based or XBean based deployment
+ - all MEPs as consumers or providers
+ It uses Apache ActiveMQ internally.
+
+ http://servicemix.apache.org/servicemix-jms.html
+ -->
<!-- BEGIN SNIPPET: jms-consumer -->
+ <!--
+ A JMS Consumer endpoint is a server side endpoint that will consume
plain JMS requests and send them into the NMR to a given
+ target endpoint, which is called the proxied endpoint.
+
+ Attributes:
+ service : the endpoint service name
+ endpoint : the endpoint name
+ interfaceName : the endpoint interface name
+ targetService : the target endpoint service
name
+ targetEndpoint : the target endpoint name
+ targetInterface : the target endpoint
interface name
+ targetUri : the target endpoint URI
+ marshaler : implementation of
JmsConsumerMarshaler to use
+ synchronous : specifies if the consumer
will block while waiting for a response
+ destinationChooser : implementation of
DestinationChoose, implements the logic for choosing among JMS destinations
+ destinationResolver : implementation of
DestinationResolver, implements the logic for converting strings into
destination IDs
+ pubSubDomain : specifies if the destination
is a topic
+ connectionFactory : the ConnectionFactory used
to connect with the destination
+ useMessageIdInResponse : specifies if the request
message's ID is used as the reply's correlation ID
+ replyDestination : specifies the JMS
destination for the reply
+ replyDestinationName : specifies the name of the
JMS destination to use for the reply
+ replyExplicitQosEnabled : specifies if the QoS values
specified for the endpoint are explicitly used when the reply is sent
+ replyDeliveryMode : specifies the JMS delivery
mode used for the reply
+ replyPriority : specifies the JMS message
priority of the reply
+ replyTimeToLive : specifies the number of
milliseconds the reply message is valid
+ replyProperties : specifies custom properties
to be placed in the reply's JMS header
+ storeFactory : implementation of
StoreFactory used to create the data store for state information
+ store : implementation of Store used
to store state information
+ listenerType : specifies the type of Spring
JMS message listener to use
+ jms102 : specifies if the consumer is
to be use JMS 1.0.2
+ transacted : specifies the type of
transaction to wrap the message exchanges
+ clientId : the JMS client ID for a
shared Connection created and used by this listener
+ destination : the destination used to
receive messages
+ destinationName : the name of the destination
used to receive messages
+ durableSubscriptionName : the durable subscriber name
+ exceptionListener : implementation of
ExceptionListener used to notify in case of a JMSException thrown by the
registered message listener or the invocation infrastructure
+ messageSelector : the message selector string
to use
+ sessionAcknowledgeMode : the acknowledgement mode
that is used when creating a Session to send a message
+ subscriptionDurable : specifies if the listener
uses a durable subscription to listen from messages
+ pubSubNoLocal : specifies if messages
published by the listener's Connection are suppressed
+ concurrentConsumers : the number of concurrent
consumers created by the listener
+ cacheLevel : the level of caching allowed
by the listener
+ receiveTimeout : the timeout for receiving a
message in milliseconds
+ recoveryInterval : the interval, in
milliseconds, between attempts to receover after a failed listener set-up
+ maxMessagesPerTask : the number of attempts to
receive messages per task
+ serverSessionFactory : the ServerSessionFactory to
use
+ -->
<jms:consumer service="replaceMe:serviceName"
endpoint="jms-consumer"
destinationName="my.queue"
@@ -19,6 +79,57 @@
<!-- END SNIPPET: jms-consumer -->
<!-- BEGIN SNIPPET: jms-soap-consumer -->
+ <!--
+ A JMS SOAP Consumer endpoint is a server side endpoint that will
consume plain JMS+SOAP requests and send them into the NMR to a given
+ target endpoint, which is called the proxied endpoint.
+
+ Attributes:
+ service : the endpoint service name
+ endpoint : the endpoint name
+ interfaceName : the endpoint interface name
+ targetService : the target endpoint service
name
+ targetEndpoint : the target endpoint name
+ targetInterface : the target endpoint
interface name
+ targetUri : the target endpoint URI
+ marshaler : implementation of
JmsConsumerMarshaler to use
+ synchronous : specifies if the consumer
will block while waiting for a response
+ destinationChooser : implementation of
DestinationChoose, implements the logic for choosing among JMS destinations
+ destinationResolver : implementation of
DestinationResolver, implements the logic for converting strings into
destination IDs
+ pubSubDomain : specifies if the destination
is a topic
+ connectionFactory : the ConnectionFactory used
to connect with the destination
+ useMessageIdInResponse : specifies if the request
message's ID is used as the reply's correlation ID
+ replyDestination : specifies the JMS
destination for the reply
+ replyDestinationName : specifies the name of the
JMS destination to use for the reply
+ replyExplicitQosEnabled : specifies if the QoS values
specified for the endpoint are explicitly used when the reply is sent
+ replyDeliveryMode : specifies the JMS delivery
mode used for the reply
+ replyPriority : specifies the JMS message
priority of the reply
+ replyTimeToLive : specifies the number of
milliseconds the reply message is valid
+ replyProperties : specifies custom properties
to be placed in the reply's JMS header
+ storeFactory : implementation of
StoreFactory used to create the data store for state information
+ store : implementation of Store used
to store state information
+ listenerType : specifies the type of Spring
JMS message listener to use
+ jms102 : specifies if the consumer is
to be use JMS 1.0.2
+ transacted : specifies the type of
transaction to wrap the message exchanges
+ clientId : the JMS client ID for a
shared Connection created and used by this listener
+ destination : the destination used to
receive messages
+ destinationName : the name of the destination
used to receive messages
+ durableSubscriptionName : the durable subscriber name
+ exceptionListener : implementation of
ExceptionListener used to notify in case of a JMSException thrown by the
registered message listener or the invocation infrastructure
+ messageSelector : the message selector string
to use
+ sessionAcknowledgeMode : the acknowledgement mode
that is used when creating a Session to send a message
+ subscriptionDurable : specifies if the listener
uses a durable subscription to listen from messages
+ pubSubNoLocal : specifies if messages
published by the listener's Connection are suppressed
+ concurrentConsumers : the number of concurrent
consumers created by the listener
+ cacheLevel : the level of caching allowed
by the listener
+ receiveTimeout : the timeout for receiving a
message in milliseconds
+ recoveryInterval : the interval, in
milliseconds, between attempts to receover after a failed listener set-up
+ maxMessagesPerTask : the number of attempts to
receive messages per task
+ serverSessionFactory : the ServerSessionFactory to
use
+ wsdl : WSDL describing the service
+ useJBIWrapper : specifies if the JBI wrapper
is sent in the body of the message
+ validateWsdl : checks WSI-BP compliance
+ policies : a list of interceptors that
will process the message
+ -->
<jms:soap-consumer wsdl="classpath:service.wsdl"
destinationName="my.queue"
connectionFactory="#connectionFactory"
@@ -26,7 +137,57 @@
<!-- END SNIPPET: jms-soap-consumer -->
<!-- BEGIN SNIPPET: jms-jca-consumer -->
- <jms:consumer service="replaceMe:serviceName"
+ <!--
+ A JMS JCA Consumer endpoint is a server side endpoint that will
consume plain JMS requests and send them into the NMR to a given
+ target endpoint, which is called the proxied endpoint.
+
+ Attributes:
+ service : the endpoint service name
+ endpoint : the endpoint name
+ interfaceName : the endpoint interface name
+ targetService : the target endpoint service
name
+ targetEndpoint : the target endpoint name
+ targetInterface : the target endpoint
interface name
+ targetUri : the target endpoint URI
+ marshaler : implementation of
JmsConsumerMarshaler to use
+ synchronous : specifies if the consumer
will block while waiting for a response
+ destinationChooser : implementation of
DestinationChoose, implements the logic for choosing among JMS destinations
+ destinationResolver : implementation of
DestinationResolver, implements the logic for converting strings into
destination IDs
+ pubSubDomain : specifies if the destination
is a topic
+ connectionFactory : the ConnectionFactory used
to connect with the destination
+ useMessageIdInResponse : specifies if the request
message's ID is used as the reply's correlation ID
+ replyDestination : specifies the JMS
destination for the reply
+ replyDestinationName : specifies the name of the
JMS destination to use for the reply
+ replyExplicitQosEnabled : specifies if the QoS values
specified for the endpoint are explicitly used when the reply is sent
+ replyDeliveryMode : specifies the JMS delivery
mode used for the reply
+ replyPriority : specifies the JMS message
priority of the reply
+ replyTimeToLive : specifies the number of
milliseconds the reply message is valid
+ replyProperties : specifies custom properties
to be placed in the reply's JMS header
+ storeFactory : implementation of
StoreFactory used to create the data store for state information
+ store : implementation of Store used
to store state information
+ listenerType : specifies the type of Spring
JMS message listener to use
+ jms102 : specifies if the consumer is
to be use JMS 1.0.2
+ transacted : specifies the type of
transaction to wrap the message exchanges
+ clientId : the JMS client ID for a
shared Connection created and used by this listener
+ destination : the destination used to
receive messages
+ destinationName : the name of the destination
used to receive messages
+ durableSubscriptionName : the durable subscriber name
+ exceptionListener : implementation of
ExceptionListener used to notify in case of a JMSException thrown by the
registered message listener or the invocation infrastructure
+ messageSelector : the message selector string
to use
+ sessionAcknowledgeMode : the acknowledgement mode
that is used when creating a Session to send a message
+ subscriptionDurable : specifies if the listener
uses a durable subscription to listen from messages
+ pubSubNoLocal : specifies if messages
published by the listener's Connection are suppressed
+ concurrentConsumers : the number of concurrent
consumers created by the listener
+ cacheLevel : the level of caching allowed
by the listener
+ receiveTimeout : the timeout for receiving a
message in milliseconds
+ recoveryInterval : the interval, in
milliseconds, between attempts to receover after a failed listener set-up
+ maxMessagesPerTask : the number of attempts to
receive messages per task
+ serverSessionFactory : the ServerSessionFactory to
use
+ resourceAdapter : the resource adapter used
for the endpoint
+ activationSpec : the activation information
needed for the endpoint
+ bootstrapContext : the bootstrap context used
when starting the resource adapter
+ -->
+ <jms:jca-consumer service="replaceMe:serviceName"
endpoint="jms-jca-consumer"
destinationName="my.queue"
connectionFactory="#connectionFactory"
@@ -35,6 +196,35 @@
<!-- END SNIPPET: jms-jca-consumer -->
<!-- BEGIN SNIPPET: jms-provider -->
+ <!--
+ A JMS Provider endpoint is a client-side JBI endpoint which can
receive requests from the NMR and send them to a given URL where the service is
provided.
+
+ Attributes:
+ deliveryMode : the JMS delivery mode
+ destinationName : the JNDI name of the
destination used to send messages
+ endpoint : the endpoint name of the
proxied endpoint
+ explicitQosEnabled : specifies if the JMS
messages have the specified properties explicitly applied
+ interfaceName : the endpoint interface name
+ jms102 : specifies if the consumer is
to be use JMS 1.0.2
+ messageIdEnabled : specifies if JMS message IDs
are enabled
+ messageTimeStampEnabled : specifies if JMS messages
are time stamped
+ priority : specifies the JMS message
priority
+ pubSubDomain : specifies if the destination
is a topic
+ pubSubNoLocal : specifies if messages
published by the listener's Connection are suppressed
+ receiveTimeout : the timeout for receiving a
message in milliseconds
+ replyDestinationName : the JNDI name of the
destination used to receive messages
+ service : the proxied endpoint service
name
+ stateless : specifies if the consumer
retains state information about the message exchange while it is in process
+ timeToLive : specifies the number of
milliseconds the message is valid
+ connectionFactory : the ConnectionFactory used
to connect with the destination
+ destination : the JMS destination used to
send messages
+ destinationChooser : implementation of
DestinationChooser used to choose among JMS destinations
+ destinationResolver : implementation of
DestinationResolver used to convert strings into destination IDs
+ marshaler : implementation of
JmsProviderMarshaler used to marshal message
+ replyDestination : the JMS destination to
receive messages
+ storeFactory : the factory class used to
create the data store for state information
+ store : the data store used to store
state information
+ -->
<jms:provider service="replaceMe:serviceName"
endpoint="jms-provider"
destinationName="my.queue"
@@ -42,6 +232,39 @@
<!-- END SNIPPET: jms-provider -->
<!-- BEGIN SNIPPET: jms-soap-provider -->
+ <!--
+ A JMS SOAP Provider endpoint is a client-side JBI endpoint which can
receive requests from the NMR and send them to a given URL where the service is
provided.
+
+ Attributes:
+ deliveryMode : the JMS delivery mode
+ destinationName : the JNDI name of the
destination used to send messages
+ endpoint : the endpoint name of the
proxied endpoint
+ explicitQosEnabled : specifies if the JMS
messages have the specified properties explicitly applied
+ interfaceName : the endpoint interface name
+ jms102 : specifies if the consumer is
to be use JMS 1.0.2
+ messageIdEnabled : specifies if JMS message IDs
are enabled
+ messageTimeStampEnabled : specifies if JMS messages
are time stamped
+ priority : specifies the JMS message
priority
+ pubSubDomain : specifies if the destination
is a topic
+ pubSubNoLocal : specifies if messages
published by the listener's Connection are suppressed
+ receiveTimeout : the timeout for receiving a
message in milliseconds
+ replyDestinationName : the JNDI name of the
destination used to receive messages
+ service : the proxied endpoint service
name
+ stateless : specifies if the consumer
retains state information about the message exchange while it is in process
+ timeToLive : specifies the number of
milliseconds the message is valid
+ connectionFactory : the ConnectionFactory used
to connect with the destination
+ destination : the JMS destination used to
send messages
+ destinationChooser : implementation of
DestinationChooser used to choose among JMS destinations
+ destinationResolver : implementation of
DestinationResolver used to convert strings into destination IDs
+ marshaler : implementation of
JmsProviderMarshaler used to marshal message
+ replyDestination : the JMS destination to
receive messages
+ storeFactory : the factory class used to
create the data store for state information
+ store : the data store used to store
state information
+ wsdl : WSDL describing the service
+ useJBIWrapper : specifies if the JBI wrapper
is sent in the body of the message
+ validateWsdl : checks WSI-BP compliance
+ policies : a list of interceptors that
will process the message
+ -->
<jms:soap-provider wsdl="classpath:service.wsdl"
destinationName="my.queue"
connectionFactory="#connectionFactory" />
Modified:
servicemix/archetypes/trunk/servicemix-jsr181-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL:
http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-jsr181-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=987067&r1=987066&r2=987067&view=diff
==============================================================================
---
servicemix/archetypes/trunk/servicemix-jsr181-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
(original)
+++
servicemix/archetypes/trunk/servicemix-jsr181-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
Thu Aug 19 08:13:34 2010
@@ -1,29 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- 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.
-
--->
+<!-- Generated by Apache ServiceMix Archetype -->
<beans xmlns:jsr181="http://servicemix.apache.org/jsr181/1.0"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://servicemix.apache.org/jsr181/1.0
http://servicemix.apache.org/schema/servicemix-jsr1...@{components-version}.xsd
- http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+ xsi:schemaLocation="
+ http://servicemix.apache.org/jsr181/1.0
http://servicemix.apache.org/schema/servicemix-jsr1...@{components.version}.xsd
+ http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+
+ <!--
+ The ServiceMix JSR-181 component exposes (annotated) POJO as services
on the bus.
+ It uses XFire internally to perform service invocations and XML
marshaling.
+ It supports:
+ - no annotations
+ - JSR-181 annotations
+ - Commons Attributes annotations
+ - Aegis databinding
+ - JAXB2 databinding
+ - XMLBeans databinding
+ - WSDL auto generation
+ - MTOM/attachment
+
+ http://servicemix.apache.org/servicemix-jsr181.html
+ -->
<!-- BEGIN SNIPPET: jsr181 -->
+ <!--
+ The JSR-181 endpoint exposes the given POJO on the bus.
+
+ Attributes:
+ service : the endpoint service name
+ endpoint : the endpoint name
+ annotations : the annotations used to
configure the service. It can be "none", "java5", "jsr181", "commons".
+ If not specified, the
annotations type will be discovered by looking at the class.
+ interfaceName : the endpoint interface
name
+ mtomEnabled : enable MTOM/attachment
support
+ pojo : the instanciated POJO to
service requests
+ pojoClass : the class name of the
POJO to service requests
+ serviceInterface : the class name of the
interface to expose as a service
+ typeMapping : can be "default",
"xmlbeans", "jaxb2". Defaults to "default" (Aegis) if no annotations used, else
defaults to "jaxb2"
+ wsdlResource : if set, the WSDL will be
retrieved from the given Spring resource
+ style : the SOAP style to use
(document, wrapped, rpc)
+ validationEnabled : specifies if the payload
should automatically be validated. This feature only works for JAXB 2.0
payloads.
+ -->
<jsr181:endpoint pojoClass="${packageName}.ExampleService" />
<!-- END SNIPPET: jsr181 -->
Modified:
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/pom.xml?rev=987067&r1=987066&r2=987067&view=diff
==============================================================================
---
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/pom.xml
(original)
+++
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/pom.xml
Thu Aug 19 08:13:34 2010
@@ -1,22 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <!--
-
- 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.
- -->
+ <!-- Generated by Apache ServiceMix Archetype -->
<modelVersion>4.0.0</modelVersion>
@@ -30,7 +15,7 @@
<dependency>
<groupId>org.apache.servicemix</groupId>
<artifactId>servicemix-jsr181</artifactId>
- <version>@{components-version}</version>
+ <version>@{components.version}</version>
</dependency>
</dependencies>
Modified:
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL:
http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=987067&r1=987066&r2=987067&view=diff
==============================================================================
---
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
(original)
+++
servicemix/archetypes/trunk/servicemix-jsr181-wsdl-first-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
Thu Aug 19 08:13:34 2010
@@ -1,27 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- 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.
-
--->
+<!-- Generated by Apache ServiceMix Archetype -->
<beans xmlns:jsr181="http://servicemix.apache.org/jsr181/1.0"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://servicemix.apache.org/jsr181/1.0
http://servicemix.apache.org/schema/servicemix-jsr1...@{components-version}.xsd
- http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+ xsi:schemaLocation="
+ http://servicemix.apache.org/jsr181/1.0
http://servicemix.apache.org/schema/servicemix-jsr1...@{components.version}.xsd
+ http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<!-- BEGIN SNIPPET: jsr181 -->
<jsr181:endpoint pojoClass="put.your.implementation.here"