Full Code of apache/servicemix for AI

master efaa40471643 cached
406 files
1.2 MB
315.1k tokens
576 symbols
1 requests
Download .txt
Showing preview only (1,406K chars total). Download the full file or copy to clipboard to get everything.
Repository: apache/servicemix
Branch: master
Commit: efaa40471643
Files: 406
Total size: 1.2 MB

Directory structure:
gitextract_eceba452/

├── .gitignore
├── BUILDING
├── LICENSE
├── NOTICE
├── README
├── RELEASE-NOTES
├── activemq/
│   ├── activemq-camel/
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           ├── java/
│   │           │   └── org/
│   │           │       └── apache/
│   │           │           └── servicemix/
│   │           │               └── activemq/
│   │           │                   └── camel/
│   │           │                       ├── ActiveMQComponent.java
│   │           │                       └── ActiveMQComponentResolver.java
│   │           └── resources/
│   │               └── OSGI-INF/
│   │                   └── blueprint/
│   │                       └── activemq-camel.xml
│   ├── activemq-service/
│   │   ├── README.md
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           └── resources/
│   │               ├── OSGI-INF/
│   │               │   └── blueprint/
│   │               │       └── activemq-service.xml
│   │               └── org.apache.servicemix.activemq.service.cfg
│   └── pom.xml
├── activiti/
│   ├── activiti-config/
│   │   ├── pom.xml
│   │   └── src/
│   │       ├── main/
│   │       │   ├── java/
│   │       │   │   └── org/
│   │       │   │       └── apache/
│   │       │   │           └── servicemix/
│   │       │   │               └── activiti/
│   │       │   │                   └── config/
│   │       │   │                       └── CamelAwareELResolver.java
│   │       │   └── resources/
│   │       │       └── OSGI-INF/
│   │       │           └── blueprint/
│   │       │               └── activiti-config.xml
│   │       └── test/
│   │           ├── java/
│   │           │   └── org/
│   │           │       └── apache/
│   │           │           └── servicemix/
│   │           │               └── activiti/
│   │           │                   └── config/
│   │           │                       └── CamelAwareELResolverTest.java
│   │           └── resources/
│   │               └── log4j.properties
│   └── pom.xml
├── assemblies/
│   ├── apache-servicemix/
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           ├── descriptors/
│   │           │   ├── unix-bin.xml
│   │           │   └── unix-src.xml
│   │           ├── filtered-resources/
│   │           │   └── etc/
│   │           │       ├── org.apache.karaf.features.cfg
│   │           │       └── overrides.properties
│   │           └── resources/
│   │               ├── common-unix-bin.xml
│   │               ├── etc/
│   │               │   ├── custom.properties
│   │               │   ├── jre.properties
│   │               │   ├── org.apache.activemq.webconsole.cfg
│   │               │   ├── org.apache.aries.transaction.cfg
│   │               │   ├── org.apache.cxf.wsn.cfg
│   │               │   ├── org.ops4j.pax.logging.cfg
│   │               │   ├── org.ops4j.pax.url.mvn.cfg
│   │               │   ├── org.ops4j.pax.web.cfg.empty.stub
│   │               │   ├── system.properties
│   │               │   └── users.properties
│   │               ├── licenses/
│   │               │   ├── asm.txt
│   │               │   ├── bsd.txt
│   │               │   ├── cddl-1.0.txt
│   │               │   ├── cpl-1.0.txt
│   │               │   ├── epl-1.0.txt
│   │               │   └── slf4j-mit.txt
│   │               ├── setenv-unix
│   │               └── setenv-win
│   ├── apache-servicemix-examples/
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           └── filtered-resources/
│   │               └── pom.xml
│   ├── features/
│   │   ├── pom.xml
│   │   ├── servicemix-examples/
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           └── feature/
│   │   │               └── feature.xml
│   │   ├── servicemix-features/
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           └── feature/
│   │   │               └── feature.xml
│   │   └── servicemix-kie/
│   │       ├── pom.xml
│   │       └── src/
│   │           └── main/
│   │               └── feature/
│   │                   └── feature.xml
│   └── pom.xml
├── branding/
│   ├── pom.xml
│   └── src/
│       └── main/
│           └── resources/
│               └── org/
│                   └── apache/
│                       └── karaf/
│                           └── branding/
│                               └── branding.properties
├── etc/
│   └── appended-resources/
│       └── supplemental-models.xml
├── examples/
│   ├── README.txt
│   ├── activemq/
│   │   ├── activemq-camel-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── org.apache.servicemix.examples.cfg
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── activemq/
│   │   │           │                       └── MyTransform.java
│   │   │           └── resources/
│   │   │               └── OSGI-INF/
│   │   │                   └── blueprint/
│   │   │                       └── blueprint.xml
│   │   └── pom.xml
│   ├── activiti/
│   │   ├── activiti-camel/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── activiti/
│   │   │           │                       └── ActivitiRouteBuilder.java
│   │   │           └── resources/
│   │   │               └── OSGI-INF/
│   │   │                   ├── activiti/
│   │   │                   │   └── OrderProcess.bpmn20.xml
│   │   │                   └── blueprint/
│   │   │                       └── activiti-camel.xml
│   │   └── pom.xml
│   ├── akka/
│   │   ├── akka-camel/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── resources/
│   │   │       │   │   └── application.conf
│   │   │       │   └── scala/
│   │   │       │       └── org/
│   │   │       │           └── apache/
│   │   │       │               └── servicemix/
│   │   │       │                   └── examples/
│   │   │       │                       └── akka/
│   │   │       │                           ├── Application.scala
│   │   │       │                           ├── CamelBridge.scala
│   │   │       │                           ├── RouteBuilder.scala
│   │   │       │                           └── Stats.scala
│   │   │       └── test/
│   │   │           ├── resources/
│   │   │           │   ├── application.conf
│   │   │           │   ├── generate_test_data.rb
│   │   │           │   ├── log4j.properties
│   │   │           │   └── samples/
│   │   │           │       ├── file1.csv
│   │   │           │       ├── file2.csv
│   │   │           │       ├── file3.csv
│   │   │           │       ├── file4.csv
│   │   │           │       └── file5.csv
│   │   │           └── scala/
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── akka/
│   │   │                                   ├── RouteBuilderTest.scala
│   │   │                                   └── StatsTest.scala
│   │   └── pom.xml
│   ├── camel/
│   │   ├── camel-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── org.apache.servicemix.examples.cfg
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       └── MyTransform.java
│   │   │           └── resources/
│   │   │               └── OSGI-INF/
│   │   │                   └── blueprint/
│   │   │                       └── blueprint.xml
│   │   ├── camel-cxf-rest/
│   │   │   ├── README.txt
│   │   │   ├── camel-cxf-rest-client/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           └── java/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── camel/
│   │   │   │                                   └── rest/
│   │   │   │                                       └── client/
│   │   │   │                                           └── Client.java
│   │   │   ├── camel-cxf-rest-route/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── rest/
│   │   │   │           │                           └── PersonService.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-cxf-rest-service/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── rest/
│   │   │   │           │                           ├── ServiceHandler.java
│   │   │   │           │                           └── model/
│   │   │   │           │                               └── Person.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   └── pom.xml
│   │   ├── camel-cxf-soap/
│   │   │   ├── README.txt
│   │   │   ├── camel-cxf-soap-client/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           └── java/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── camel/
│   │   │   │                                   └── soap/
│   │   │   │                                       └── client/
│   │   │   │                                           └── Client.java
│   │   │   ├── camel-cxf-soap-route/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── soap/
│   │   │   │           │                           └── PersonService.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-cxf-soap-service/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── soap/
│   │   │   │           │                           ├── ServiceHandler.java
│   │   │   │           │                           └── model/
│   │   │   │           │                               ├── Person.java
│   │   │   │           │                               └── PersonException.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   └── pom.xml
│   │   ├── camel-drools/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       ├── Drinks.java
│   │   │           │                       ├── DroolsCommandHelper.java
│   │   │           │                       ├── Person.java
│   │   │           │                       ├── PersonHelper.java
│   │   │           │                       └── Sex.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── camel-context.xml
│   │   │               ├── log4j.properties
│   │   │               └── testSpring.drl
│   │   ├── camel-drools-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       ├── Drinks.java
│   │   │           │                       ├── DroolsBlueprintBean.java
│   │   │           │                       ├── DroolsCommandHelper.java
│   │   │           │                       ├── Person.java
│   │   │           │                       ├── PersonHelper.java
│   │   │           │                       └── Sex.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               ├── log4j.properties
│   │   │               └── testSpring.drl
│   │   ├── camel-osgi/
│   │   │   ├── README.txt
│   │   │   ├── org.apache.servicemix.examples.cfg
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       ├── MyRouteBuilder.java
│   │   │           │                       └── MyTransform.java
│   │   │           └── resources/
│   │   │               └── META-INF/
│   │   │                   └── spring/
│   │   │                       └── beans.xml
│   │   ├── camel-sql/
│   │   │   ├── README.txt
│   │   │   ├── camel-sql-datasource-derby/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           └── DatabaseBeanDerby.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-sql-datasource-h2/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           └── DatabaseBeanH2.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-sql-datasource-pgsql/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           └── DatabaseBeanPgSQL.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-sql-orders/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           ├── ListenerBean.java
│   │   │   │           │                           └── OrderBean.java
│   │   │   │           └── resources/
│   │   │   │               ├── OSGI-INF/
│   │   │   │               │   └── blueprint/
│   │   │   │               │       └── blueprint.xml
│   │   │   │               └── sql.properties
│   │   │   └── pom.xml
│   │   └── pom.xml
│   ├── cxf/
│   │   ├── cxf-jaxrs/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       └── jaxrs/
│   │   │           │                           ├── Customer.java
│   │   │           │                           ├── CustomerService.java
│   │   │           │                           ├── Order.java
│   │   │           │                           ├── Product.java
│   │   │           │                           └── client/
│   │   │           │                               └── Client.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── cxf/
│   │   │                                   └── jaxrs/
│   │   │                                       └── client/
│   │   │                                           ├── add_customer.xml
│   │   │                                           └── update_customer.xml
│   │   ├── cxf-jaxrs-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       └── jaxrs/
│   │   │           │                           ├── Customer.java
│   │   │           │                           ├── CustomerService.java
│   │   │           │                           ├── Order.java
│   │   │           │                           ├── Product.java
│   │   │           │                           └── client/
│   │   │           │                               └── Client.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── cxf/
│   │   │                                   └── jaxrs/
│   │   │                                       └── client/
│   │   │                                           ├── add_customer.xml
│   │   │                                           └── update_customer.xml
│   │   ├── cxf-jaxws-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               ├── examples/
│   │   │           │               │   └── cxf/
│   │   │           │               │       ├── EnableCORSInterceptor.java
│   │   │           │               │       ├── HelloWorld.java
│   │   │           │               │       └── HelloWorldImpl.java
│   │   │           │               └── samples/
│   │   │           │                   └── cxf_osgi/
│   │   │           │                       └── Client.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── samples/
│   │   │                               └── cxf_osgi/
│   │   │                                   └── request.xml
│   │   ├── cxf-osgi/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               ├── examples/
│   │   │           │               │   └── cxf/
│   │   │           │               │       ├── EnableCORSInterceptor.java
│   │   │           │               │       ├── HelloWorld.java
│   │   │           │               │       └── HelloWorldImpl.java
│   │   │           │               └── samples/
│   │   │           │                   └── cxf_osgi/
│   │   │           │                       └── Client.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── samples/
│   │   │                               └── cxf_osgi/
│   │   │                                   └── request.xml
│   │   ├── cxf-ws-addressing/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── EnableCORSInterceptor.java
│   │   │           │                       └── wsaddressing/
│   │   │           │                           ├── Client.java
│   │   │           │                           └── GreeterImpl.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               ├── org/
│   │   │               │   └── apache/
│   │   │               │       └── servicemix/
│   │   │               │           └── examples/
│   │   │               │               └── cxf/
│   │   │               │                   └── wsaddressing/
│   │   │               │                       └── request.xml
│   │   │               └── wsdl/
│   │   │                   └── hello_world_addr.wsdl
│   │   ├── cxf-ws-rm/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               ├── examples/
│   │   │           │               │   └── cxf/
│   │   │           │               │       ├── HelloWorld.java
│   │   │           │               │       └── HelloWorldImpl.java
│   │   │           │               └── samples/
│   │   │           │                   └── cxf_ws_rm/
│   │   │           │                       ├── Client.java
│   │   │           │                       └── MessageLossSimulator.java
│   │   │           └── resources/
│   │   │               ├── HelloWorld.wsdl
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── samples/
│   │   │                               └── cxf_ws_rm/
│   │   │                                   └── ws_rm.xml
│   │   ├── cxf-ws-security-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── Client.java
│   │   │           │                       ├── ClientPasswordCallback.java
│   │   │           │                       ├── CustomerSecurityInterceptor.java
│   │   │           │                       ├── EnableCORSInterceptor.java
│   │   │           │                       ├── HelloWorld.java
│   │   │           │                       └── HelloWorldImpl.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               └── log4j.properties
│   │   ├── cxf-ws-security-osgi/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── Client.java
│   │   │           │                       ├── ClientPasswordCallback.java
│   │   │           │                       ├── CustomerSecurityInterceptor.java
│   │   │           │                       ├── EnableCORSInterceptor.java
│   │   │           │                       ├── HelloWorld.java
│   │   │           │                       └── HelloWorldImpl.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── log4j.properties
│   │   ├── cxf-ws-security-signature/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── Client.java
│   │   │           │                       ├── HelloWorld.java
│   │   │           │                       ├── HelloWorldImpl.java
│   │   │           │                       └── ServerPasswordCallback.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               ├── org/
│   │   │               │   └── apache/
│   │   │               │       └── servicemix/
│   │   │               │           └── examples/
│   │   │               │               └── cxf/
│   │   │               │                   └── request.xml
│   │   │               └── server-truststore.jks
│   │   ├── cxf-wsn/
│   │   │   ├── README.txt
│   │   │   ├── cxf-wsn-base/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── cxf/
│   │   │   │           │                       └── base/
│   │   │   │           │                           ├── Email.java
│   │   │   │           │                           └── package-info.java
│   │   │   │           └── resources/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── cxf/
│   │   │   │                                   └── base/
│   │   │   │                                       └── jaxb.index
│   │   │   ├── cxf-wsn-client/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           └── java/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── cxf/
│   │   │   │                                   └── client/
│   │   │   │                                       └── Client.java
│   │   │   ├── cxf-wsn-notifier/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── cxf/
│   │   │   │           │                       └── notifier/
│   │   │   │           │                           ├── Notifier.java
│   │   │   │           │                           └── SpamGenerator.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── cxf-wsn-receive/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── cxf/
│   │   │   │           │                       └── receive/
│   │   │   │           │                           └── Subscriber.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   └── pom.xml
│   │   └── pom.xml
│   ├── drools/
│   │   ├── drools-camel-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── drools/
│   │   │           │                       └── camel/
│   │   │           │                           └── blueprint/
│   │   │           │                               ├── model/
│   │   │           │                               │   ├── Customer.java
│   │   │           │                               │   └── CustomerType.java
│   │   │           │                               └── osgi/
│   │   │           │                                   ├── DebugAgendaEventListener.java
│   │   │           │                                   ├── DebugRuleRuntimeEventListener.java
│   │   │           │                                   └── Utils.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       ├── camel-context.xml
│   │   │               │       └── kmodule-blueprint.xml
│   │   │               └── rule/
│   │   │                   └── customer-score.drl
│   │   ├── drools-camel-cxf-server/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── java/
│   │   │       │   │   └── org/
│   │   │       │   │       └── apache/
│   │   │       │   │           └── servicemix/
│   │   │       │   │               └── examples/
│   │   │       │   │                   └── drools/
│   │   │       │   │                       └── camel/
│   │   │       │   │                           └── cxf/
│   │   │       │   │                               └── server/
│   │   │       │   │                                   ├── model/
│   │   │       │   │                                   │   ├── Customer.java
│   │   │       │   │                                   │   └── CustomerType.java
│   │   │       │   │                                   └── osgi/
│   │   │       │   │                                       ├── CommandMessageBodyRW.java
│   │   │       │   │                                       ├── DebugAgendaEventListener.java
│   │   │       │   │                                       ├── DebugRuleRuntimeEventListener.java
│   │   │       │   │                                       └── Utils.java
│   │   │       │   └── resources/
│   │   │       │       ├── OSGI-INF/
│   │   │       │       │   └── blueprint/
│   │   │       │       │       ├── camel-client.xml
│   │   │       │       │       ├── camel-server.xml
│   │   │       │       │       └── kmodule-blueprint.xml
│   │   │       │       └── rule/
│   │   │       │           └── customer-score.drl
│   │   │       └── test/
│   │   │           └── resources/
│   │   │               ├── batch-test-request.xml
│   │   │               └── test-request.xml
│   │   ├── drools-simple/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── java/
│   │   │       │   │   └── org/
│   │   │       │   │       └── apache/
│   │   │       │   │           └── servicemix/
│   │   │       │   │               └── examples/
│   │   │       │   │                   └── drools/
│   │   │       │   │                       └── simple/
│   │   │       │   │                           ├── model/
│   │   │       │   │                           │   ├── Customer.java
│   │   │       │   │                           │   └── CustomerType.java
│   │   │       │   │                           └── osgi/
│   │   │       │   │                               ├── SimpleRuleActivator.java
│   │   │       │   │                               └── Utils.java
│   │   │       │   └── resources/
│   │   │       │       ├── META-INF/
│   │   │       │       │   └── kmodule.xml
│   │   │       │       └── rule/
│   │   │       │           └── simple.drl
│   │   │       └── test/
│   │   │           └── java/
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── drools/
│   │   │                                   └── test/
│   │   │                                       ├── ActivatorTest.java
│   │   │                                       └── SimpleTest.java
│   │   ├── drools-spring/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── drools/
│   │   │           │                       └── spring/
│   │   │           │                           ├── model/
│   │   │           │                           │   ├── Customer.java
│   │   │           │                           │   └── CustomerType.java
│   │   │           │                           └── osgi/
│   │   │           │                               ├── DebugAgendaEventListener.java
│   │   │           │                               ├── DebugRuleRuntimeEventListener.java
│   │   │           │                               ├── SimpleRuleBean.java
│   │   │           │                               └── Utils.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── simple-spring.xml
│   │   │               └── rule/
│   │   │                   └── customer-score.drl
│   │   └── pom.xml
│   └── pom.xml
├── itests/
│   ├── pom.xml
│   └── src/
│       └── test/
│           ├── java/
│           │   └── org/
│           │       └── apache/
│           │           └── servicemix/
│           │               └── itests/
│           │                   ├── BasicDistroTest.java
│           │                   ├── ExamplesCXFTest.java
│           │                   ├── ExamplesCamelTest.java
│           │                   ├── ExamplesDrools6Test.java
│           │                   ├── ExamplesTest.java
│           │                   └── base/
│           │                       ├── Features.java
│           │                       ├── LogCollector.java
│           │                       └── ServiceMixDistroTest.java
│           └── resources/
│               └── log4j.properties
├── logging/
│   ├── jms-appender/
│   │   ├── README.txt
│   │   ├── pom.xml
│   │   └── src/
│   │       ├── main/
│   │       │   ├── java/
│   │       │   │   └── org/
│   │       │   │       └── apache/
│   │       │   │           └── servicemix/
│   │       │   │               └── logging/
│   │       │   │                   └── jms/
│   │       │   │                       ├── DefaultLoggingEventFormat.java
│   │       │   │                       ├── JMSAppender.java
│   │       │   │                       ├── LoggingEventFormat.java
│   │       │   │                       └── LogstashEventFormat.java
│   │       │   └── resources/
│   │       │       └── OSGI-INF/
│   │       │           └── blueprint/
│   │       │               └── config.xml
│   │       └── test/
│   │           ├── java/
│   │           │   └── org/
│   │           │       └── apache/
│   │           │           └── servicemix/
│   │           │               └── logging/
│   │           │                   └── jms/
│   │           │                       ├── JMSAppenderTest.java
│   │           │                       ├── LogstashEventFormatTest.java
│   │           │                       └── MockEvents.java
│   │           └── resources/
│   │               └── log4j.properties
│   └── pom.xml
├── manual/
│   ├── README.txt
│   ├── pom.xml
│   └── src/
│       └── main/
│           ├── asciidoc/
│           │   ├── activemq-guide/
│           │   │   ├── _activemq-camel-example.adoc
│           │   │   ├── _activemq-guide.adoc
│           │   │   ├── _introduction.adoc
│           │   │   └── activemq-guide.adoc
│           │   ├── activiti-guide/
│           │   │   ├── _activiti-camel-example.adoc
│           │   │   ├── _activiti-guide.adoc
│           │   │   ├── _introduction.adoc
│           │   │   └── activiti-guide.adoc
│           │   ├── camel-guide/
│           │   │   ├── _camel-guide.adoc
│           │   │   ├── _deployment.adoc
│           │   │   ├── _installing-components.adoc
│           │   │   ├── _introduction.adoc
│           │   │   ├── _osgi-bundle-blueprint.adoc
│           │   │   ├── _osgi-bundle-spring.adoc
│           │   │   ├── _plain-blueprint.adoc
│           │   │   ├── _plain-spring.adoc
│           │   │   ├── _troubleshooting.adoc
│           │   │   ├── camel-guide.adoc
│           │   │   ├── plain-blueprint-template.xml
│           │   │   ├── plain-blueprint.xml
│           │   │   ├── plain-spring-template.xml
│           │   │   └── plain-spring.xml
│           │   ├── contribute.adoc
│           │   ├── docinfo-footer.html
│           │   ├── docinfo.html
│           │   ├── documentation.adoc
│           │   ├── index.adoc
│           │   ├── quickstart/
│           │   │   ├── _activemq.adoc
│           │   │   ├── _camel.adoc
│           │   │   ├── _console.adoc
│           │   │   ├── _features.adoc
│           │   │   ├── _installation.adoc
│           │   │   ├── _introduction.adoc
│           │   │   ├── _quickstart.adoc
│           │   │   ├── _summary.adoc
│           │   │   └── quickstart.adoc
│           │   ├── resources/
│           │   │   ├── _resources.adoc
│           │   │   └── resources.adoc
│           │   └── user-guide/
│           │       ├── _introduction.adoc
│           │       ├── _technology-selection.adoc
│           │       ├── _user-guide.adoc
│           │       ├── _what-is-servicemix.adoc
│           │       └── user-guide.adoc
│           └── groovy/
│               └── CreateKarafCommandsAdocFile.groovy
├── parent/
│   ├── assemblies-parent/
│   │   └── pom.xml
│   ├── features-parent/
│   │   └── pom.xml
│   └── pom.xml
├── pom.xml
└── tooling/
    ├── archetypes/
    │   ├── pom.xml
    │   ├── servicemix-cxf-code-first-osgi-bundle/
    │   │   ├── pom.xml
    │   │   └── src/
    │   │       └── main/
    │   │           └── resources/
    │   │               ├── META-INF/
    │   │               │   └── maven/
    │   │               │       └── archetype.xml
    │   │               └── archetype-resources/
    │   │                   ├── pom.xml
    │   │                   └── src/
    │   │                       └── main/
    │   │                           ├── java/
    │   │                           │   ├── Person.java
    │   │                           │   ├── PersonImpl.java
    │   │                           │   ├── UnknownPersonFault.java
    │   │                           │   ├── client/
    │   │                           │   │   └── Client.java
    │   │                           │   └── types/
    │   │                           │       ├── GetPerson.java
    │   │                           │       ├── GetPersonResponse.java
    │   │                           │       ├── ObjectFactory.java
    │   │                           │       ├── UnknownPersonFault.java
    │   │                           │       └── package-info.java
    │   │                           └── resources/
    │   │                               └── META-INF/
    │   │                                   └── spring/
    │   │                                       └── beans.xml
    │   ├── servicemix-cxf-wsdl-first-osgi-bundle/
    │   │   ├── pom.xml
    │   │   └── src/
    │   │       └── main/
    │   │           └── resources/
    │   │               ├── META-INF/
    │   │               │   └── maven/
    │   │               │       └── archetype.xml
    │   │               └── archetype-resources/
    │   │                   ├── pom.xml
    │   │                   └── src/
    │   │                       └── main/
    │   │                           ├── java/
    │   │                           │   └── PersonImpl.java
    │   │                           └── resources/
    │   │                               ├── META-INF/
    │   │                               │   └── spring/
    │   │                               │       └── beans.xml
    │   │                               └── wsdl/
    │   │                                   └── person.wsdl
    │   └── servicemix-osgi-bundle/
    │       ├── pom.xml
    │       └── src/
    │           └── main/
    │               └── resources/
    │                   ├── META-INF/
    │                   │   └── maven/
    │                   │       └── archetype.xml
    │                   └── archetype-resources/
    │                       └── pom.xml
    └── pom.xml

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
generated-docs-karaf
.settings
.classpath
.project
target
.idea
.vscode
*.i??
velocity.log
.DS_Store

================================================
FILE: BUILDING
================================================
/*
 * 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.
 */

Building Apache ServiceMix 6
============================

Initial Setup
-------------

1) Install J2SE 8.0 SDK, which can be downloaded from
   http://www.oracle.com/technetwork/java/javase/downloads/index.html. Use latest version.

2) Make sure that your JAVA_HOME environment variable is set to the newly installed 
   JDK location, and that your PATH includes %JAVA_HOME%\bin (windows) or 
   $JAVA_HOME$/bin (unix).

3) Install Maven 3.2.5, which can be downloaded from
   http://maven.apache.org/download.html. Make sure that your PATH includes 
   the MVN_HOME/bin directory. 


Building
--------

1) Change to the top level directory of Apache ServiceMix source distribution.

2) Run
         $> mvn
         
   This will compile Apache ServiceMix and run all of the tests in the
   Apache ServiceMix Kernel source distribution. 
   
   Alternatively, you can run
         $> mvn -Pfastinstall
         
   This will compile Apache ServiceMix without running the tests and takes less
   time to build.
   
   Depending on the load of remote Maven repositories, you may have 
   to run "mvn" several times until the required dependencies are 
   all located in your local maven repository. It usually takes some time for 
   maven to download required dependencies in the first build.
   
3) The distributions will be available under "assembly/target" directory.



================================================
FILE: LICENSE
================================================

                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   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.



================================================
FILE: NOTICE
================================================
   =========================================================================
   ==  NOTICE file for use with the Apache License, Version 2.0,          ==
   ==  in this case for the Apache ServiceMix distribution.               ==
   =========================================================================

   This product contains software developed by
   The Apache Software Foundation (http://www.apache.org/).

   This product contains software developed by
   Open Participation Software for Java (http://www.ops4j.org/).

   This software contains unmodified binary redistributions for H2 database engine (http://www.h2database.com/),
   which is dual licensed and available under a modified version of the MPL 1.1 (Mozilla Public License)
   or under the (unmodified) EPL 1.0 (Eclipse Public License).
   An original copy of the license agreement can be found at: http://www.h2database.com/html/license.html

   This software contains unmodified binary redistributions for StAX-Ex library (https://stax-ex.java.net/),
   which is dual licensed and available under the (unmodified) CDDL 1.1 (Common Development and Distribution License)
   or under the (unmodified) GPL v2 (GNU General Public License).
   An original copy of the license agreement can be found at: http://glassfish.java.net/public/CDDL+GPL_1_1.html


================================================
FILE: README
================================================
/*
 * 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.
 */

Welcome to Apache ServiceMix 7
==============================
Apache ServiceMix is a flexible, open-source integration container that unifies 
the features and functionality of Apache ActiveMQ, Camel, CXF, and Karaf 
into a powerful runtime platform you can use to build your own integrations solutions. 
It provides a complete, enterprise ready ESB exclusively powered by OSGi.

It is being released under Apache License.

The main features are:
- reliable messaging with Apache ActiveMQ
- messaging, routing and Enterprise Integration Patterns with Apache Camel
- WS-* and RESTful web services with Apache CXF
- OSGi-based server runtime powered by Apache Karaf

Getting Started
===============
For an Apache ServiceMix 7 source distribution, please read
BUILDING for instructions on building Apache ServiceMix 6.

For an Apache ServiceMix 7 binary distribution, please read
RELEASE-NOTES for installation instructions and list of supported
and unsupported features.

Alternatively, you can also find out how to get started here:
    http://servicemix.apache.org/docs/7.x/

If you need more help try talking to us on our mailing lists
    http://servicemix.apache.org/community/mailing-lists.html

If you find any issues with ServiceMix 7, please submit reports
with JIRA here:
    http://issues.apache.org/jira/browse/SM

We welcome contributions, and encourage you to get involved in the 
ServiceMix community. If you'd like to learn more about how you can 
contribute, please see:
    http://servicemix.apache.org/community/contributing.html

Many thanks for using Apache ServiceMix.


The ServiceMix Team
http://servicemix.apache.org/community/team.html


================================================
FILE: RELEASE-NOTES
================================================
/*
 * 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.
 */

                      Apache ServiceMix 7.0.1
                  ================================
 Overview
 --------

Apache ServiceMix is a flexible, open-source integration container that unifies the features and functionality
of Apache ActiveMQ, Camel, CXF, and Karaf into a powerful runtime platform you can use to build your own
integrations solutions.

Apache ServiceMix 7.0.1 is a new patch release, which includes a few bug fixes and
a new version of Apache Camel, Apache CXF, Apache ActiveMQ and Apache Karaf.
This release includes:

- Apache ActiveMQ 5.14.5 (http://activemq.apache.org)
- Apache Camel 2.16.5 (http://camel.apache.org)
- Apache CXF 3.1.9 (http://cxf.apache.org)
- Apache Karaf 4.0.9 (http://karaf.apache.org)


 Changelog
 ---------

** Bug
    * [SM-3225] - Examples compile error
    * [SM-3264] - Upgrade to Apache Karaf 4.0.9

** Improvement
    * [SM-3303] - Expose proces configuration to cfg file

** Task
    * [SM-3222] - ServiceMix should not use non-free json.org
    * [SM-3226] - Release Apache ServiceMix 7.0.1
    * [SM-3228] - Upgrade to Apache Camel 2.16.5 and Apache CXF 3.1.9
    * [SM-3268] - Upgrade to Apache ActiveMQ 5.14.5
    * [SM-3357] - Upgrade to depends-maven-plugin 1.4.0
    * [SM-3358] - Upgrade to maven-bundle-plugin 3.3.0
    * [SM-3359] - Upgrade maven plugin versions and parent pom

                      Apache ServiceMix 7.0.0
                  ================================
 Overview
 --------

Apache ServiceMix is a flexible, open-source integration container that unifies the features and functionality
of Apache ActiveMQ, Camel, CXF, and Karaf into a powerful runtime platform you can use to build your own
integrations solutions.

Apache ServiceMix 7.0.0 is the first production ready release based on Karaf 4.0.x, which includes numerous
new features, improvements, and bug fixes. Apache ServiceMix 7.0.0 includes:

- Apache ActiveMQ 5.14.3 (http://activemq.apache.org)
- Apache Camel 2.16.4 (http://camel.apache.org)
- Apache CXF 3.1.5 (http://cxf.apache.org)
- Apache Karaf 4.0.8 (http://karaf.apache.org)


 Changelog
 ---------

** Sub-task
    * [SM-3223] - Add notice about usage of non-free json library

** Bug
    * [SM-3170] - Small bug in example feature file

** Task
    * [SM-3025] - Release Apache ServiceMix 7.0.0
    * [SM-3177] - Upgrade to Apache ActiveMQ 5.14.3
    * [SM-3213] - Upgrade to Apache karaf 4.0.8


                      Apache ServiceMix 7.0.0.M3
                  ================================
 Overview
 --------

  !! This is a technology preview release of Apache ServiceMix, and should NOT be considered production ready !!

Apache ServiceMix is a flexible, open-source integration container that unifies the features and functionality
of Apache ActiveMQ, Camel, CXF, and Karaf into a powerful runtime platform you can use to build your own 
integrations solutions.

Apache ServiceMix 7.0.0 will be the first release based on Karaf 4.0.x, which includes numerous new features. 
We ask that users provide the community with their feed back so that the full Apache ServiceMix 7.0.0 release 
can be as feature complete and stable as possible.

Apache ServiceMix 7.0.0.M3 is a new preview release of the project, which includes:

- Apache ActiveMQ 5.14.1 (http://activemq.apache.org)
- Apache Camel 2.16.4 (http://camel.apache.org)
- Apache CXF 3.1.5 (http://cxf.apache.org)
- Apache Karaf 4.0.7 (http://karaf.apache.org)


 Changelog
 ---------

** Bug
    * [SM-3040] - Multiple staging repositories while releasing ServiceMix
    * [SM-3045] - Assembly descriptor contains a *nix-specific root-relative-reference
    * [SM-3093] - Examples compile error
    * [SM-3106] - exec-maven-plugin.version is not set in examples pom.xml

** Task
    * [SM-3067] - Upgrade to Apache ActiveMQ 5.13.4
    * [SM-3081] - Upgrade to Apache Karaf 4.0.6
    * [SM-3082] - Update Exec Maven Plugin to version 1.5.0
    * [SM-3083] - Upgrade to Apache ActiveMQ 5.14.x
    * [SM-3103] - Upgrade to Apache Karaf 4.0.7
    * [SM-3110] - Upgrade to Apache Camel 2.16.4
    * [SM-3123] - Use values from system.properties in several ActiveMQ configurartion files
    * [SM-3167] - Release Apache ServiceMix 7.0.0.M3


                      Apache ServiceMix 7.0.0.M2
                  ================================
 Overview
 --------

  !! This is a technology preview release of Apache ServiceMix, and should NOT be considered production ready !!

Apache ServiceMix is a flexible, open-source integration container that unifies the features and functionality
of Apache ActiveMQ, Camel, CXF, and Karaf into a powerful runtime platform you can use to build your own 
integrations solutions.

Apache ServiceMix 7.0.0 will be the first release based on Karaf 4.0.x, which includes numerous new features. 
We ask that users provide the community with their feed back so that the full Apache ServiceMix 7.0.0 release 
can be as feature complete and stable as possible.

Apache ServiceMix 7.0.0.M2 is a new preview release of the project, which includes:

- Apache ActiveMQ 5.13.3 (http://activemq.apache.org)
- Apache Camel 2.16.3 (http://camel.apache.org)
- Apache CXF 3.1.5 (http://cxf.apache.org)
- Apache Karaf 4.0.5 (http://karaf.apache.org)


 Changelog
 ---------

** Bug
    * [SM-2850] -  JMSAppenderTest.testReconnectToBroker fails
    * [SM-2863] - Test failure when building examples
    * [SM-2864] - Update example README.txt files for new Karaf commands
    * [SM-2867] - Intermittent test failures in ActivitiExamplesTest
    * [SM-2883] - Intermittent test failures in CamelDrools5ExamplesTest
    * [SM-2976] - stax-ex-1.7.6.jar is under CDDL+GPL  license
    * [SM-2978] - Jackson 2.7.0 in ServiceMix 7.0.0.M1 throws java.lang.NoSuchMethodError
    * [SM-2984] - Correct the shutdown command in branding.properties
    * [SM-2991] - ServiceMix doesn't start in offline environment

** Improvement
    * [SM-2395] - Download pages should correctly refer the documentation pages

** Task
    * [SM-2852] - Upgrade to Apache ActiveMQ 5.13.1
    * [SM-2866] - Release Apache ServiceMix 7.0.0.M2
    * [SM-2895] - Upgrade to Apache ActiveMQ 5.13.2
    * [SM-2931] - Upgrade to Apache Karaf 4.0.5
    * [SM-2934] - Upgrade to Apache Camel 2.16.3 and Apache CXF 3.1.5
    * [SM-2937] - Upgrade Xalan bundle to 2.7.2_3
    * [SM-2946] - Upgrade to Pax Exam 4.9.0
    * [SM-2947] - Migrate itests to Java
    * [SM-2953] - Upgrade to Pax Exam 4.9.1
    * [SM-2955] - Upgrade to Apache ActiveMQ 5.13.3
    * [SM-2989] - Upgrade maven-remote-resources-plugin configuration
    * [SM-2990] - Update maven plugins


                      Apache ServiceMix 7.0.0.M1
                  ================================
 Overview
 --------

  !! This is a technology preview release of Apache ServiceMix, and should NOT be considered production ready !!

Apache ServiceMix is a flexible, open-source integration container that unifies the features and functionality
of Apache ActiveMQ, Camel, CXF, and Karaf into a powerful runtime platform you can use to build your own 
integrations solutions.

Apache ServiceMix 7.0.0 will be the first release based on Karaf 4.0.x, which includes numerous new features. 
We ask that users provide the community with their feed back so that the full Apache ServiceMix 7.0.0 release 
can be as feature complete and stable as possible.

Apache ServiceMix 7.0.0.M1 is a new preview release of the project, which includes:

- Apache ActiveMQ 5.13.0 (http://activemq.apache.org)
- Apache Camel 2.16.2 (http://camel.apache.org)
- Apache CXF 3.1.4 (http://cxf.apache.org)
- Apache Karaf 4.0.4 (http://karaf.apache.org)


 Changelog
 ---------

** Bug
    * [SM-2251] - Intermittent test failure in JMSAppenderTest
    * [SM-2698] - ActiveMQ web console fails on J8
    * [SM-2786] - Drools 5 examples fail due to missing Eclipse JDT
    * [SM-2787] - Test failures in CxfWsnExamplesTest
    * [SM-2813] - Drools6CamelServiceExamplesTest fails with error
    * [SM-2814] - Drools6ExamplesTest fails with error
    * [SM-2818] - ServiceMix installs randomly spring 3.1.4.RELEASE feature
    * [SM-2823] - ActivitiExamplesTest fails accidentally 
    * [SM-2824] - Missing dependencies in system folder
    * [SM-2825] - Installation of CXF WSN sample fails
    * [SM-2845] - Installation of the cxf-wsn feature fails accidentally
    * [SM-2848] - cxf-wsn-client client fails due to wrong slf4j version
    * [SM-2851] - Some itests fail accidentally with NPE
    * [SM-2854] - Doclint for Javadoc fails on JDK 8

** Task
    * [SM-2355] - Remove the workaround jaxrs-api feature
    * [SM-2759] - Upgrade to Apache ActiveMQ 5.13.0
    * [SM-2763] - Upgrade to Activiti 5.19.0.1
    * [SM-2768] - Upgrade to Apache Karaf 4
    * [SM-2778] - Upgrade to Apache ActiveMQ 5.12.2
    * [SM-2803] - Refactor the assembly creation
    * [SM-2806] - Ensure ServiceMix uses Apache Commons Collections 3.2.2
    * [SM-2807] - Upgrade to Apache POM 17
    * [SM-2808] - Avoid warnings about 'parent.relativePath' during the maven build
    * [SM-2819] - Upgrade to Pax Exam 4.8.0
    * [SM-2820] - Upgrade to Apache Karaf 4.0.4
    * [SM-2821] - Upgrade to Apache Camel 2.16.2
    * [SM-2822] - Upgrade Maven-bundle-plugin to version 3.0.1
    * [SM-2826] - Upgrade to ServiceMix Specs 2.6.0
    * [SM-2844] - Upgrade to Activiti 5.19.0.2
    * [SM-2846] - Upgrade maven-compiler-plugin to 3.3
    * [SM-2847] - Upgrade maven-eclipse-plugin to 2.10
    * [SM-2849] - Upgrade to Jackson 2.6.3
    * [SM-2853] - Release Apache ServiceMix 7.0.0.M1

See the README file for more general information about ServiceMix 7.

Thanks you for downloading ServiceMix.  Enjoy !

The ServiceMix Team
http://servicemix.apache.org/community/team.html



================================================
FILE: activemq/activemq-camel/pom.xml
================================================
<?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.
    -->

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <artifactId>activemq</artifactId>
        <groupId>org.apache.servicemix</groupId>
        <version>7.1.0-SNAPSHOT</version>
    </parent>


    <groupId>org.apache.servicemix.activemq</groupId>
    <artifactId>org.apache.servicemix.activemq.camel</artifactId>
    <packaging>bundle</packaging>
    <name>Apache ServiceMix :: ActiveMQ :: Camel</name>

    <dependencies>
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-camel</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Import-Package>
                            org.apache.camel.spi; provide:=true,
                            *
                        </Import-Package>
                        <Export-Package>!*</Export-Package>
                        <Bundle-Description>${project.description}</Bundle-Description>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>


================================================
FILE: activemq/activemq-camel/src/main/java/org/apache/servicemix/activemq/camel/ActiveMQComponent.java
================================================
/**
 * 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.servicemix.activemq.camel;

import javax.jms.ConnectionFactory;

import org.apache.camel.CamelContext;
import org.apache.camel.component.jms.JmsConfiguration;

/**
 * A Camel component for ServiceMix which uses the
 * {@link org.apache.activemq.ActiveMQConnectionFactory} service for connecting to the correct
 * broker.
 */
public class ActiveMQComponent extends org.apache.activemq.camel.component.ActiveMQComponent {

    public static final String NAME = "activemq";

    public ActiveMQComponent(CamelContext camelContext, ConnectionFactory connectionFactory) {
        super(camelContext);
        setConfiguration(new JmsConfiguration(connectionFactory));
    }

}


================================================
FILE: activemq/activemq-camel/src/main/java/org/apache/servicemix/activemq/camel/ActiveMQComponentResolver.java
================================================
/**
 * 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.servicemix.activemq.camel;

import javax.jms.ConnectionFactory;

import org.apache.camel.CamelContext;
import org.apache.camel.Component;
import org.apache.camel.spi.ComponentResolver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * A {@link org.apache.camel.spi.ComponentResolver} for the {@link org.apache.servicemix.activemq.camel.ActiveMQComponent}
 */
public class ActiveMQComponentResolver implements ComponentResolver {

    Logger LOGGER = LoggerFactory.getLogger(ActiveMQComponentResolver.class);

    private ConnectionFactory connectionFactory;

    public Component resolveComponent(String name, CamelContext camelContext)
            throws Exception {
        if (name.equals(ActiveMQComponent.NAME)) {
            LOGGER.info("Creating an instance of the ActiveMQComponent (" + name + ":)");
            return new ActiveMQComponent(camelContext, connectionFactory);
        }
        return null;
    }


    public ConnectionFactory getConnectionFactory() {
        return connectionFactory;
    }

    public void setConnectionFactory(ConnectionFactory connectionFactory) {
        this.connectionFactory = connectionFactory;
    }

}


================================================
FILE: activemq/activemq-camel/src/main/resources/OSGI-INF/blueprint/activemq-camel.xml
================================================
<?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.
-->
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">

    <reference id="pooledConnectionFactory" interface="javax.jms.ConnectionFactory"
               filter="(&amp;(transacted=false)(name=default-cf))"/>

    <!--
        Register the org.apache.camel.spi.ComponentResolver for the activemq component
     -->

    <bean id="activeMQComponentResolver"
          class="org.apache.servicemix.activemq.camel.ActiveMQComponentResolver">
        <property name="connectionFactory" ref="pooledConnectionFactory"/>
    </bean>

    <service ref="activeMQComponentResolver" interface="org.apache.camel.spi.ComponentResolver" ranking="10">
        <service-properties>
            <entry key="component" value="activemq"/>
        </service-properties>
    </service>
</blueprint>


================================================
FILE: activemq/activemq-service/README.md
================================================
<!--
    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.
-->

ActiveMQ Service
================

This bundle provides default connection factories which let you connect with the ActiveMQ broker deployed
in ServiceMix.This connection factories are used at least by the `activemq` Camel component registered by
the `org.apache.servicemix.activemq.camel` bundle.

You can get the reference for the connection factory using following blueprint snippet

```xml
<reference id="pooledConnectionFactory" interface="javax.jms.ConnectionFactory"
           filter="(&amp;(transacted=false)(name=default-cf))"/>
```

In case you need the transacted connection factory you should use following snippet

```xml
<reference id="pooledConnectionFactory" interface="javax.jms.ConnectionFactory"
           filter="(&amp;(transacted=true)(name=default-cf-xa))"/>
```

## Configuring the broker

The connection factories are associated the default broker installed by the `activemq-broker` bundle - `amq-broker`.

Assume, there are more brokers deployed in ServiceMix or you have changed the name of the default broker.

```
karaf@root> activemq:list
brokerName = amq-broker

brokerName = local-broker
```

If you want to change the broker associated with the connection factories (or you have changed the name
of the default broker) you should change the `broker-name` property using Config Admin

```
karaf@root>config:edit org.apache.servicemix.activemq.service
karaf@root>property-set broker-name local-broker
karaf@root>config:update
```


================================================
FILE: activemq/activemq-service/pom.xml
================================================
<?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.
    -->

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.apache.servicemix</groupId>
        <artifactId>activemq</artifactId>
        <version>7.1.0-SNAPSHOT</version>
    </parent>

    <groupId>org.apache.servicemix.activemq</groupId>
    <artifactId>org.apache.servicemix.activemq.service</artifactId>
    <packaging>bundle</packaging>
    <name>Apache ServiceMix :: ActiveMQ :: Service</name>

    <dependencies>
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-camel</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Import-Package>*</Import-Package>
                        <Private-Package />
                        <Bundle-Description>${project.description}</Bundle-Description>
                    </instructions>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-artifacts</id>
                        <phase>package</phase>
                        <inherited>false</inherited>
                        <goals>
                            <goal>attach-artifact</goal>
                        </goals>
                        <configuration>
                            <artifacts>
                                <artifact>
                                    <file>${project.build.outputDirectory}/org.apache.servicemix.activemq.service.cfg</file>
                                    <type>cfg</type>
                                    <classifier>activemq-service</classifier>
                                </artifact>
                            </artifacts>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>


================================================
FILE: activemq/activemq-service/src/main/resources/OSGI-INF/blueprint/activemq-service.xml
================================================
<?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.
-->
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
           xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
           xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0">

    <ext:property-placeholder placeholder-prefix="$[" placeholder-suffix="]" />

    <cm:property-placeholder persistent-id="org.apache.servicemix.activemq.service" update-strategy="reload">
        <cm:default-properties>
            <cm:property name="broker-name" value="amq-broker"/>
        </cm:default-properties>
    </cm:property-placeholder>

    <bean id="activemqConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
        <property name="brokerURL" value="vm://${broker-name}?create=false&amp;waitForStart=10000"/>
        <property name="userName" value="$[activemq.jms.user]" />
        <property name="password" value="$[activemq.jms.password]" />
    </bean>

    <bean id="pooledConnectionFactory" class="org.apache.activemq.pool.PooledConnectionFactory">
        <property name="maxConnections" value="8"/>
        <property name="connectionFactory" ref="activemqConnectionFactory"/>
    </bean>

    <!-- connection factory wrapper to support auto-enlisting of XA resource -->
    <bean id="jmsXaPoolConnectionFactory" class="org.apache.activemq.pool.JcaPooledConnectionFactory">
        <property name="maxConnections" value="8" />
        <property name="connectionFactory" ref="jmsXaConnectionFactory" />
        <property name="transactionManager" ref="osgiJtaTransactionManager" />
        <property name="name" value="activemq.${broker-name}" />
    </bean>

    <bean id="jmsXaConnectionFactory" class="org.apache.activemq.ActiveMQXAConnectionFactory">
        <property name="brokerURL" value="vm://${broker-name}?create=false&amp;waitForStart=10000"/>
        <property name="userName" value="$[activemq.jms.user]" />
        <property name="password" value="$[activemq.jms.password]" />
        <property name="redeliveryPolicy">
            <bean class="org.apache.activemq.RedeliveryPolicy">
                <property name="maximumRedeliveries" value="0"/>
            </bean>
        </property>
    </bean>

    <!--
        ActiveMQ XA Resource Manager
    -->
    <bean id="resourceManager"
          class="org.apache.activemq.pool.ActiveMQResourceManager"
          init-method="recoverResource">
        <property name="transactionManager" ref="osgiJtaTransactionManager" />
        <property name="connectionFactory" ref="jmsXaPoolConnectionFactory" />
        <property name="resourceName" value="activemq.${broker-name}" />
    </bean>


    <reference id="osgiJtaTransactionManager"
               interface="javax.transaction.TransactionManager"
               availability="mandatory" />

    <!--
        Register the javax.jms.ConnectionFactory in the OSGi Service Registry
    -->
    <service ref="pooledConnectionFactory" interface="javax.jms.ConnectionFactory">
        <service-properties>
            <entry key="name" value="default-cf"/>
            <entry key="transacted" value="false" />
            <entry key="osgi.jndi.service.name" value="jms/default-cf" />
        </service-properties>
    </service>

    <!--
        Register the javax.jms.ConnectionFactory for the XA PooledConnectionFactory in the OSGi Service Registry
    -->
    <service ref="jmsXaPoolConnectionFactory" interface="javax.jms.ConnectionFactory">
        <service-properties>
            <entry key="name" value="default-cf-xa" />
            <entry key="transacted" value="true" />
            <entry key="osgi.jndi.service.name" value="jms/default-cf-xa" />
        </service-properties>
    </service>
</blueprint>


================================================
FILE: activemq/activemq-service/src/main/resources/org.apache.servicemix.activemq.service.cfg
================================================
## ---------------------------------------------------------------------------
## 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.
## ---------------------------------------------------------------------------

broker-name = amq-broker

================================================
FILE: activemq/pom.xml
================================================
<?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.
    -->

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.apache.servicemix.parent</groupId>
        <artifactId>features-parent</artifactId>
        <version>7.1.0-SNAPSHOT</version>
        <relativePath>../parent/features-parent/pom.xml</relativePath>
    </parent>

    <groupId>org.apache.servicemix</groupId>
    <artifactId>activemq</artifactId>
    <packaging>pom</packaging>
    <name>Apache ServiceMix :: ActiveMQ</name>

    <modules>
        <module>activemq-service</module>
        <module>activemq-camel</module>
    </modules>

</project>


================================================
FILE: activiti/activiti-config/pom.xml
================================================
<?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.
    -->

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <artifactId>activiti</artifactId>
        <groupId>org.apache.servicemix.activiti</groupId>
        <version>7.1.0-SNAPSHOT</version>
    </parent>

    <artifactId>org.apache.servicemix.activiti.config</artifactId>
    <packaging>bundle</packaging>
    <name>Apache ServiceMix :: Activiti Support :: Activiti Configuration</name>

    <dependencies>
        <dependency>
            <groupId>org.activiti</groupId>
            <artifactId>activiti-camel</artifactId>
        </dependency>
        <dependency>
            <groupId>org.activiti</groupId>
            <artifactId>activiti-engine</artifactId>
        </dependency>
        <dependency>
            <groupId>org.activiti</groupId>
            <artifactId>activiti-osgi</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <DynamicImport-Package>*</DynamicImport-Package>
                        <Export-Package>org.apache.servicemix.activiti.config.*</Export-Package>
                        <Bundle-Description>${project.description}</Bundle-Description>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>


</project>


================================================
FILE: activiti/activiti-config/src/main/java/org/apache/servicemix/activiti/config/CamelAwareELResolver.java
================================================
/*
 * 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.servicemix.activiti.config;

import org.activiti.camel.CamelBehaviour;
import org.activiti.camel.ContextProvider;
import org.activiti.osgi.blueprint.BlueprintELResolver;

import java.util.LinkedList;
import java.util.List;

/**
 * Custom EL resolver that allows Activiti to interact with routes that have been defined in CamelContexts
 * for which a ContextProvider has been registered in the service registry.
 *
 * All these CamelContext instances will be available through a single CamelBehaviour bean that you can access
 * with the EL expression ${camel} in your business process definitions.
 */
public class CamelAwareELResolver extends BlueprintELResolver {

    public static final String CAMEL_PROPERTY_NAME = "camel";
    private final List<ContextProvider> providers = new LinkedList<ContextProvider>();
    private final CamelBehaviour camelBehaviour = new CamelBehaviour(providers);

    @Override
    public Object getValue(org.activiti.engine.impl.javax.el.ELContext context, Object base, Object property) {
        if (base == null && property != null && property instanceof String) {
            String key = (String) property;
            if (CAMEL_PROPERTY_NAME.endsWith(key)) {
                context.setPropertyResolved(true);
                return camelBehaviour;
            }
        }
        return super.getValue(context, base, property);
    }

    /**
     * Add a context provider to the global ${camel} variable
     *
     * @param provider the context provider
     */
    public void addContextProvider(ContextProvider provider) {
        providers.add(provider);
    }

    /**
     * Remove a context provider from the global ${camel} variable
     *
     * @param provider the context provider
     */
    public void removeContextProvider(ContextProvider provider) {
        providers.remove(provider);
    }

    /**
     * Access the {@link CamelBehaviour} instance that is being returned
     *
     * @return the {@link CamelBehaviour} instance
     */
    protected CamelBehaviour getCamelBehaviour() {
        return camelBehaviour;
    }
}


================================================
FILE: activiti/activiti-config/src/main/resources/OSGI-INF/blueprint/activiti-config.xml
================================================
<?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.
-->
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
           xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
           xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0">

    <ext:property-placeholder placeholder-prefix="$[" placeholder-suffix="]" />

    <cm:property-placeholder persistent-id="org.apache.servicemix.activiti.config" update-strategy="reload">
        <cm:default-properties>

            <cm:property name="engine.jdbcDriver" value="org.h2.Driver"/>
            <cm:property name="engine.jdbcUrl" value="jdbc:h2:file:$[karaf.data]/activiti/database;DB_CLOSE_ON_EXIT=FALSE"/>
            <cm:property name="engine.jdbcUsername" value="sa"/>
            <cm:property name="engine.jdbcPassword" value=""/>
            <cm:property name="engine.databaseType" value="h2"/>

            <cm:property name="engine.jobExecutorActivate" value="true"/>
            <cm:property name="engine.asyncExecutorEnabled" value="false" />  
            <cm:property name="engine.asyncExecutorActivate" value="false" />
            <cm:property name="engine.batchSizeProcessInstances" value="25"/>
            <cm:property name="engine.batchSizeTasks" value="25"/>
            <cm:property name="engine.enableDatabaseEventLogging" value="false"/>
            <cm:property name="engine.enableEventDispatcher" value="true"/>
            <cm:property name="engine.enableSafeBpmnXml" value="false"/>
            <cm:property name="engine.asyncFailedJobWaitTime" value="10"/>
            <cm:property name="engine.databaseCatalog" value=""/>
            <cm:property name="engine.databaseSchema" value=""/>
            <cm:property name="engine.databaseTablePrefix" value=""/>
            <cm:property name="engine.mailServerDefaultFrom" value="activiti@localhost"/>
            <cm:property name="engine.mailServerHost" value="localhost"/>
            <cm:property name="engine.mailServerPassword" value=""/>
            <cm:property name="engine.mailServerPort" value="25"/>
            <cm:property name="engine.mailServerUsername" value=""/>
            <cm:property name="engine.useSSL" value="false"/>
            <cm:property name="engine.useTLS" value="false"/>
        </cm:default-properties>
    </cm:property-placeholder>

    <!--
      Setting up the process engine configuration, using an embedded H2 database together with our default Aries
      transaction manager.
    -->

    <reference id="transactionManager" interface="javax.transaction.TransactionManager"/>

    <bean id="configuration" class="org.activiti.engine.impl.cfg.JtaProcessEngineConfiguration" ext:field-injection="true" >
        <property name="transactionManager" ref="transactionManager"/>
        <property name="databaseSchemaUpdate" value="true"/>
        <property name="transactionsExternallyManaged" value="true" />
        
        <property name="jdbcDriver" value="${engine.jdbcDriver}"/>
        <property name="jdbcUrl" value="${engine.jdbcUrl}"/>
        <property name="jdbcUsername" value="${engine.jdbcUsername}"/>
        <property name="jdbcPassword" value="${engine.jdbcPassword}"/>
        <property name="databaseType" value="${engine.databaseType}"/>
        <property name="databaseCatalog" value="${engine.databaseCatalog}"/>
        <property name="databaseSchema" value="${engine.databaseSchema}"/>
        <property name="databaseTablePrefix" value="${engine.databaseTablePrefix}"/>
        <property name="enableDatabaseEventLogging" value="${engine.enableDatabaseEventLogging}"/>

        <property name="jobExecutorActivate" value="${engine.jobExecutorActivate}"/>
        <property name="asyncExecutorEnabled" value="${engine.asyncExecutorEnabled}" />
        <property name="asyncExecutorActivate" value="${engine.asyncExecutorActivate}" />
        <property name="asyncFailedJobWaitTime" value="${engine.asyncFailedJobWaitTime}"/>
        <property name="batchSizeProcessInstances" value="${engine.batchSizeProcessInstances}"/>
        <property name="batchSizeTasks" value="${engine.batchSizeTasks}"/>
        <property name="enableEventDispatcher" value="${engine.enableEventDispatcher}"/>
        <property name="enableSafeBpmnXml" value="${engine.enableSafeBpmnXml}"/>

        <property name="mailServerDefaultFrom" value="${engine.mailServerDefaultFrom}"/>
        <property name="mailServerHost" value="${engine.mailServerHost}"/>
        <property name="mailServerPassword" value="${engine.mailServerPassword}"/>
        <property name="mailServerPort" value="${engine.mailServerPort}"/>
        <property name="mailServerUsername" value="${engine.mailServerUsername}"/>
        <property name="useSSL" value="${engine.useSSL}"/>
        <property name="useTLS" value="${engine.useTLS}"/>
    </bean>
    
    <!--
      Set up the custom resolver implementation to ease integration with Camel routes
    -->
    <bean id="resolver" class="org.apache.servicemix.activiti.config.CamelAwareELResolver"/>

    <reference-list availability="optional" interface="org.activiti.camel.ContextProvider">
        <reference-listener ref="resolver" bind-method="addContextProvider" unbind-method="removeContextProvider" />
    </reference-list>

    <reference-list availability="optional" interface="org.activiti.engine.delegate.JavaDelegate">
        <reference-listener ref="resolver" bind-method="bindService" unbind-method="unbindService" />
    </reference-list>

    <!--
      Set up the Activiti process engine itself
    -->
    <bean id="processEngineFactory" class="org.activiti.osgi.blueprint.ProcessEngineFactoryWithELResolver" init-method="init" destroy-method="destroy">
        <property name="processEngineConfiguration" ref="configuration"/>
        <property name="bundle" ref="blueprintBundle"/>
        <property name="blueprintELResolver" ref="resolver" />
    </bean>

    <bean id="processEngine" factory-ref="processEngineFactory" factory-method="getObject"/>

    <bean id="runtimeService" factory-ref="processEngine" factory-method="getRuntimeService" />

    <!--
      Register the ProcessEngine and RuntimeService as OSGi services to allow other bundles to use them
    -->
    <service ref="processEngine" interface="org.activiti.engine.ProcessEngine"/>
    <service ref="runtimeService" interface="org.activiti.engine.RuntimeService"/>

</blueprint>

================================================
FILE: activiti/activiti-config/src/test/java/org/apache/servicemix/activiti/config/CamelAwareELResolverTest.java
================================================
/*
 * 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.servicemix.activiti.config;

import org.activiti.engine.impl.javax.el.ELContext;
import org.junit.Test;

import static org.apache.servicemix.activiti.config.CamelAwareELResolver.CAMEL_PROPERTY_NAME;
import static org.easymock.EasyMock.*;
import static org.junit.Assert.*;

/**
 * Tests for {@link CamelAwareELResolver}
 */
public class CamelAwareELResolverTest {

    private final CamelAwareELResolver resolver = new CamelAwareELResolver();

    @Test
    public void testGetValue() {
        assertNull(resolver.getValue(null, null, null));
        assertNull(resolver.getValue(null, null, "NonCamelProperty"));

        ELContext context = expectELContextResolved();
        assertSame(resolver.getCamelBehaviour(), resolver.getValue(context, null, CAMEL_PROPERTY_NAME));
    }

    /*
     * Set up a mock ELContext that expects the property to get resolved
     */
    private ELContext expectELContextResolved() {
        ELContext context = createMock(ELContext.class);
        context.setPropertyResolved(true);
        replay(context);
        return context;
    }
}


================================================
FILE: activiti/activiti-config/src/test/resources/log4j.properties
================================================
#
# 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.
#

#
# The logging properties used
#
log4j.rootLogger=INFO, out

# uncomment the following line to turn on Camel debugging
#log4j.logger.org.apache.camel=DEBUG

log4j.logger.org.springframework=WARN


# CONSOLE appender not used by default
log4j.appender.out=org.apache.log4j.ConsoleAppender
log4j.appender.out.layout=org.apache.log4j.PatternLayout
log4j.appender.out.layout.ConversionPattern=[%30.30t] %-30.30c{1} %-5p %m%n
#log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n

log4j.throwableRenderer=org.apache.log4j.EnhancedThrowableRenderer


================================================
FILE: activiti/pom.xml
================================================
<?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.
    -->

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.apache.servicemix.parent</groupId>
        <artifactId>features-parent</artifactId>
        <version>7.1.0-SNAPSHOT</version>
        <relativePath>../parent/features-parent/pom.xml</relativePath>
    </parent>

    <groupId>org.apache.servicemix.activiti</groupId>
    <artifactId>activiti</artifactId>
    <packaging>pom</packaging>
    <name>Apache ServiceMix :: Activiti Support</name>
    <modules>
        <module>activiti-config</module>
    </modules>
</project>


================================================
FILE: assemblies/apache-servicemix/pom.xml
================================================
<?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.
    -->

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <artifactId>assemblies</artifactId>
        <groupId>org.apache.servicemix.assemblies</groupId>
        <version>7.1.0-SNAPSHOT</version>
    </parent>

    <groupId>org.apache.servicemix</groupId>
    <artifactId>apache-servicemix</artifactId>
    <packaging>pom</packaging>
    <name>Apache ServiceMix :: Assemblies :: Default Distribution</name>

    <properties>
        <examples.directory>../../examples</examples.directory>
    </properties>

    <dependencies>

        <!-- Apache Karaf -->
        <dependency>
            <groupId>org.apache.karaf.features</groupId>
            <artifactId>framework</artifactId>
            <type>kar</type>
        </dependency>
        <dependency>
            <groupId>org.apache.karaf.features</groupId>
            <artifactId>standard</artifactId>
            <classifier>features</classifier>
            <type>xml</type>
        </dependency>
        <dependency>
            <groupId>org.apache.karaf.features</groupId>
            <artifactId>spring</artifactId>
            <classifier>features</classifier>
            <type>xml</type>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.karaf.features</groupId>
            <artifactId>enterprise</artifactId>
            <classifier>features</classifier>
            <type>xml</type>
            <scope>runtime</scope>
        </dependency>

        <!-- Apache Camel -->
        <dependency>
            <groupId>org.apache.camel.karaf</groupId>
            <artifactId>apache-camel</artifactId>
            <type>xml</type>
            <classifier>features</classifier>
            <scope>runtime</scope>
        </dependency>

        <!-- Apache CXF -->
        <dependency>
            <groupId>org.apache.cxf.karaf</groupId>
            <artifactId>apache-cxf</artifactId>
            <type>xml</type>
            <classifier>features</classifier>
            <scope>runtime</scope>
        </dependency>

        <!-- Apache ActiveMQ -->
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-karaf</artifactId>
            <type>xml</type>
            <classifier>features</classifier>
            <scope>runtime</scope>
        </dependency>

        <!-- Apache ServiceMix -->
        <dependency>
            <groupId>org.apache.servicemix.features</groupId>
            <artifactId>servicemix-features</artifactId>
            <version>${project.version}</version>
            <classifier>features</classifier>
            <type>xml</type>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.servicemix.features</groupId>
            <artifactId>servicemix-examples</artifactId>
            <version>${project.version}</version>
            <classifier>features</classifier>
            <type>xml</type>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.servicemix.features</groupId>
            <artifactId>servicemix-kie</artifactId>
            <version>${project.version}</version>
            <classifier>features</classifier>
            <type>xml</type>
            <scope>runtime</scope>
        </dependency>

        <!-- branding -->
        <dependency>
            <groupId>org.apache.servicemix</groupId>
            <artifactId>org.apache.servicemix.branding</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>

        <!-- examples -->
        <dependency>
            <groupId>org.apache.servicemix</groupId>
            <artifactId>apache-servicemix-examples</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
            
    <repositories>
        <!-- SpringSource EBR is necessary to get some Spring OSGi bundles atm -->
        <repository>
            <id>com.springsource.repository.bundles.release</id>
            <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
            <url>https://repository.springsource.com/maven/bundles/release</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
                
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <includes>
                    <include>**/*</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/filtered-resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/*</include>
                </includes>
            </resource>
            <resource>
                <directory>${project.basedir}/../..</directory>
                <filtering>false</filtering>
                <includes>
                    <include>README</include>
                    <include>RELEASE*</include>
                    <include>LICENSE</include>
                    <include>NOTICE</include>
                </includes>
            </resource>
            <resource>
                <directory>${project.build.directory}/dependencies</directory>
                <filtering>false</filtering>
                <excludes>
                    <exclude>**/*.i??</exclude>
                    <exclude>**/.target</exclude>
                    <exclude>**/.classpath</exclude>
                </excludes>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <groupId>org.apache.karaf.tooling</groupId>
                <artifactId>karaf-maven-plugin</artifactId>
                <version>${karaf.version}</version>
                <executions>
                    <execution>
                        <id>install-kar</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>assembly</goal>
                        </goals>
                    </execution>
                    <!-- we will use custom assembly
                    <execution>
                        <id>package</id>
                        <goals>
                            <goal>archive</goal>
                        </goals>
                    </execution>
                    -->
                </executions>
                <configuration>
                    <installedFeatures>
                        <feature>wrapper</feature>
                    </installedFeatures>
                    <startupFeatures>
                        <feature>eventadmin</feature>
                    </startupFeatures>
                    <bootFeatures>
                        <feature>standard</feature>
                        <feature>camel</feature>
                        <feature>camel-blueprint</feature>
                        <feature>camel-jms</feature>
                        <feature>camel-xstream</feature>
                        <feature>camel-cxf</feature>
                        <feature>activemq-camel</feature>
                        <feature>activemq-broker-noweb</feature>
                        <feature>activemq-blueprint</feature>
                        <feature>cxf</feature>
                        <feature>servicemix-messaging</feature>
                        <feature>war</feature>
                    </bootFeatures>
                    <installedBundles>
                        <!-- To ensure the overriden bundles exist in 'system' -->
                        <bundle>mvn:joda-time/joda-time/${jodatime2.bundle.version}</bundle>
                        <bundle>mvn:com.fasterxml.jackson.core/jackson-core/${fasterxml.jackson.version}</bundle>
                        <bundle>mvn:com.fasterxml.jackson.core/jackson-databind/${fasterxml.jackson.version}</bundle>
                        <bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/${fasterxml.jackson.version}</bundle>
                        <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/${fasterxml.jackson.version}</bundle>
                        <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/${fasterxml.jackson.version}</bundle>
                        <bundle>mvn:com.fasterxml.jackson.module/jackson-module-scala_2.11/${fasterxml.jackson.version}</bundle>
                    </installedBundles>
                    <libraries>
                        <library>xerces-${xerces.version}.jar;url:="wrap:mvn:xerces/xercesImpl/${xerces.version}$Export-Package=org.apache.*;version=${xerces.version}";type:=endorsed;export:=true;delegate:=true</library>

                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxp-api-1.4/${servicemix.specs.version};type:=endorsed;export:=true</library>
                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxb-api-2.2/${servicemix.specs.version};type:=endorsed;export:=true</library>
                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxws-api-2.2/${servicemix.specs.version};type:=endorsed;export:=true</library>
                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.saaj-api-1.3/${servicemix.specs.version};type:=endorsed;export:=true</library>
                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activation-api-1.1/${servicemix.specs.version};type:=endorsed;export:=true</library>
                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.stax-api-1.2/${servicemix.specs.version};type:=endorsed;export:=true</library>
                        <library>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan/${xalan.bundle.version};type:=endorsed;export:=true</library>
                        <library>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan-serializer/${xalan-serializer.bundle.version};type:=endorsed;export:=true</library>
                        <library>mvn:javax.annotation/javax.annotation-api/1.2;type:=endorsed;export:=true</library>

                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.activator/${servicemix.specs.version};type:=default;export:=true</library>
                        <library>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.locator/${servicemix.specs.version};type:=default;export:=true</library>
                    </libraries>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>unpack</id>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>org.apache.servicemix</groupId>
                                    <artifactId>apache-servicemix-examples</artifactId>
                                    <version>${project.version}</version>
                                    <outputDirectory>${project.build.directory}/dependencies/examples</outputDirectory>
                                </artifactItem>
                                <artifactItem>
                                    <groupId>org.apache.karaf</groupId>
                                    <artifactId>demos</artifactId>
                                    <version>${karaf.version}</version>
                                    <outputDirectory>${project.build.directory}/dependencies/examples/karaf</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                    <execution>
                        <id>copy</id>
                        <goals>
                            <goal>copy</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>org.apache.servicemix</groupId>
                                    <artifactId>org.apache.servicemix.branding</artifactId>
                                    <version>${project.version}</version>
                                    <outputDirectory>${project.build.directory}/dependencies/lib</outputDirectory>
                                    <destFileName>servicemix-version.jar</destFileName>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <executions>
                    <execution>
                        <id>process-resources</id>
                        <goals>
                            <goal>resources</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-remote-resources-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>increase-perm-mem</id>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <target name="increase-perm-mem">
                                <echo message="Updating bin/setenv in unix assembly" />
                                <concat destfile="${project.build.directory}/assembly/bin/setenv" append="true" eol="unix">
                                    <fileset file="${project.build.outputDirectory}/setenv-unix" />
                                </concat>
                                <echo message="Updating bin/setenv.bat in windows assembly" />
                                <concat destfile="${project.build.directory}/assembly/bin/setenv.bat" append="true" eol="dos">
                                    <fileset file="${project.build.outputDirectory}/setenv-win" />
                                </concat>
                            </target>
                        </configuration>
                    </execution>
                    <execution>
                        <id>copy-karaf-to-servicemix</id>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <target name="copy-karaf-to-servicemix">
                                <echo message="Copying bin/karaf to bin/servicemix" />
                                <copy file="${project.build.directory}/assembly/bin/karaf" tofile="${project.build.directory}/assembly/bin/servicemix" />
                                <echo message="Copying bin/karaf.bat to bin/servicemix.bat" />
                                <copy file="${project.build.directory}/assembly/bin/karaf.bat" tofile="${project.build.directory}/assembly/bin/servicemix.bat" />
                            </target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                        <id>unix-bin</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <descriptors>
                                <descriptor>src/main/descriptors/unix-bin.xml</descriptor>
                            </descriptors>
                            <finalName>${project.artifactId}-${project.version}</finalName>
                            <tarLongFileMode>gnu</tarLongFileMode>
                            <appendAssemblyId>false</appendAssemblyId>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>release</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-assembly-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>unix-src</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>single</goal>
                                </goals>
                                <configuration>
                                    <descriptors>
                                        <descriptor>src/main/descriptors/unix-src.xml</descriptor>
                                    </descriptors>
                                </configuration>
                                <inherited>false</inherited>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>


================================================
FILE: assemblies/apache-servicemix/src/main/descriptors/unix-bin.xml
================================================
<?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.
-->
<assembly>
    <id>apache-servicemix</id>

    <formats>
        <format>zip</format>
    </formats>

    <componentDescriptors>
        <componentDescriptor>${project.build.outputDirectory}/common-unix-bin.xml</componentDescriptor>
    </componentDescriptors>

</assembly>


================================================
FILE: assemblies/apache-servicemix/src/main/descriptors/unix-src.xml
================================================
<?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.
-->
<assembly>
    <id>src</id>
    <formats>
        <format>zip</format>
    </formats>
    <fileSets>
        <!-- Copy license and other files from root -->
        <fileSet>
            <directory>${basedir}/../..</directory>
            <outputDirectory>/</outputDirectory>
            <includes>
                <include>BUILDING</include>
                <include>README</include>
                <include>RELEASE*</include>
                <include>LICENSE</include>
                <include>NOTICE</include>
            </includes>
            <lineEnding>unix</lineEnding>
        </fileSet>

        <!-- Binary Files -->
        <fileSet>
            <directory>${basedir}/../..</directory>
            <outputDirectory>src</outputDirectory>
            <includes>
                <include>**/*.jpeg</include>
                <include>**/*.jpg</include>
                <include>**/*.gif</include>
                <include>**/*.png</include>
                <include>**/*.exe</include>
                <include>**/*.dll</include>
                <include>**/*.jar</include>
                <include>**/*.so</include>
                <include>**/*.ks</include>
                <include>**/*.ts</include>
                <include>**/*.keystore</include>
                <include>**/*.bin</include>
                <include>**/*.jnilib</include>
                <include>**/*.cert</include>
                <include>**/*.jks</include>
            </includes>
            <excludes>
                <exclude>**/eclipse-classes/**</exclude>
                <exclude>**/target/**</exclude>
            </excludes>
        </fileSet>

        <!-- Text Files -->
        <fileSet>
            <directory>${basedir}/../..</directory>
            <outputDirectory>src</outputDirectory>
            <includes>
                <include>**/*</include>
            </includes>
            <excludes>
                <exclude>**/*.jpeg</exclude>
                <exclude>**/*.jpg</exclude>
                <exclude>**/*.gif</exclude>
                <exclude>**/*.png</exclude>
                <exclude>**/*.exe</exclude>
                <exclude>**/*.dll</exclude>
                <exclude>**/*.jar</exclude>
                <exclude>**/*.so</exclude>
                <exclude>**/*.ks</exclude>
                <exclude>**/*.ts</exclude>
                <exclude>**/*.keystore</exclude>
                <exclude>**/*.bin</exclude>
                <exclude>**/*.jnilib</exclude>
                <exclude>**/*.cert</exclude>
                <exclude>**/target/**</exclude>
                <exclude>**/build/**</exclude>
                <exclude>activemq-data/**</exclude>
                <exclude>*/activemq-data/**</exclude>
                <exclude>**/eclipse-classes/**</exclude>
                <exclude>**/.*</exclude>
                <exclude>**/.*/**</exclude>

                <exclude>**/surefire*</exclude>
                <exclude>**/svn-commit*</exclude>

                <exclude>**/*.iml</exclude>
                <exclude>**/*.ipr</exclude>
                <exclude>**/*.iws</exclude>
                <exclude>**/*.jks</exclude>

                <exclude>**/cobertura.ser</exclude>

            </excludes>
            <lineEnding>unix</lineEnding>
        </fileSet>
    </fileSets>
</assembly>


================================================
FILE: assemblies/apache-servicemix/src/main/filtered-resources/etc/org.apache.karaf.features.cfg
================================================
################################################################################
#
#    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.
#
################################################################################

#
# Comma separated list of features repositories to register by default
#
featuresRepositories = \
    mvn:org.apache.karaf.features/enterprise/${karaf.version}/xml/features, \
    mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features, \
    mvn:org.apache.karaf.features/spring/${karaf.version}/xml/features, \
    mvn:org.apache.karaf.features/standard/${karaf.version}/xml/features, \
    mvn:org.apache.activemq/activemq-karaf/${activemq.version}/xml/features, \
    mvn:org.apache.camel.karaf/apache-camel/${camel.version}/xml/features, \
    mvn:org.apache.cxf.karaf/apache-cxf/${cxf.version}/xml/features, \
    mvn:org.apache.servicemix.features/servicemix-features/${project.version}/xml/features, \
    mvn:org.apache.servicemix.features/servicemix-examples/${project.version}/xml/features, \
    mvn:org.apache.servicemix.features/servicemix-kie/${project.version}/xml/features

#
# Comma separated list of features to install at startup
#
featuresBoot = \
    aries-blueprint, \
    bundle, \
    config, \
    deployer, \
    diagnostic, \
    feature, \
    instance, \
    jaas, \
    kar, \
    log, \
    management, \
    package, \
    service, \
    shell, \
    shell-compat, \
    ssh, \
    system, \
    wrap, \
    war, \
    camel, \
    camel-blueprint, \
    camel-jms, \
    camel-xstream, \
    camel-cxf, \
    activemq-camel, \
    activemq-broker-noweb, \
    activemq-blueprint, \
    cxf, \
    servicemix-messaging


#
# Resource repositories (OBR) that the features resolver can use
# to resolve requirements/capabilities
#
# The format of the resourceRepositories is
# resourceRepositories=[xml:url|json:url],...
# for Instance:
#
#resourceRepositories=xml:http://host/path/to/index.xml
# or
#resourceRepositories=json:http://host/path/to/index.json
#

#
# Defines if the boot features are started in asynchronous mode (in a dedicated thread)
#
featuresBootAsynchronous=false

#
# Service requirements enforcement
#
# By default, the feature resolver checks the service requirements/capabilities of
# bundles for new features (xml schema >= 1.3.0) in order to automatically installs
# the required bundles.
# The following flag can have those values:
#   - disable: service requirements are completely ignored
#   - default: service requirements are ignored for old features
#   - enforce: service requirements are always verified
#
#serviceRequirements=default

#
# Store cfg file for config element in feature
#
#configCfgStore=true



================================================
FILE: assemblies/apache-servicemix/src/main/filtered-resources/etc/overrides.properties
================================================
#
#    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.
#

# workaround for SM-2469
#
# some standard features install the version 2.2 of joda-time bundle ans bundles which depend on joda-time
# wire to this bundle. Later installation of activiti fails, because it needs higher version of joda-time
# and activiti tries to resolve this bundle via multiple paths. We want to force all features installing 
# joda-time/joda-time bundle with range [2,3) to use exactly the version given below to make sure only one
# version of joda-time is installed in the system.
mvn:joda-time/joda-time/${jodatime2.bundle.version};range="[2,3)"

# workaround for SM-2727
# Camel 2.16.x includes jackson in version 2.6.x but ActiveMQ and CXF still use the version 2.4.x. It makes
# problems while resolving some bundles (see the issue for details). We should force usage of 2.6.x until
# ActiveMQ and CXF upgrade to 2.6.x
mvn:com.fasterxml.jackson.core/jackson-core/${fasterxml.jackson.version};range="[2,3)"
mvn:com.fasterxml.jackson.core/jackson-databind/${fasterxml.jackson.version};range="[2,3)"
mvn:com.fasterxml.jackson.core/jackson-annotations/${fasterxml.jackson.version};range="[2,3)"
mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/${fasterxml.jackson.version};range="[2,3)"
mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/${fasterxml.jackson.version};range="[2,3)"
mvn:com.fasterxml.jackson.module/jackson-module-scala_2.11/${fasterxml.jackson.version};range="[2,3)"

================================================
FILE: assemblies/apache-servicemix/src/main/resources/common-unix-bin.xml
================================================
<?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.
-->
<component>
    <fileSets>
        <!-- Cherry-pick files from the expanded Karaf distribution -->
        <fileSet>
            <directory>${project.build.directory}/assembly</directory>
            <outputDirectory>${file.separator}</outputDirectory>
            <excludes>
                <exclude>bin/**</exclude>
                <exclude>setenv-*</exclude>
                <exclude>*-unix-bin.xml</exclude>
            </excludes>
            <fileMode>0644</fileMode>
            <directoryMode>0775</directoryMode>
        </fileSet>

        <!-- Copy over bin/* scripts separately to get the correct file mode -->
        <fileSet>
            <directory>${project.build.directory}/assembly</directory>
            <outputDirectory>${file.separator}</outputDirectory>
            <includes>
                <include>bin/*</include>
            </includes>
            <lineEnding>unix</lineEnding>
            <fileMode>0755</fileMode>
        </fileSet>
        <fileSet>
            <directory>${project.build.directory}/assembly</directory>
            <outputDirectory>${file.separator}</outputDirectory>
            <includes>
                <include>bin/*</include>
            </includes>
            <lineEnding>dos</lineEnding>
            <fileMode>0755</fileMode>
        </fileSet>
    </fileSets>

</component>

================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/custom.properties
================================================
################################################################################
#
#    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.
#
################################################################################

#
# You can place any customized configuration here.
# All the values specified here will override the default value.
#

karaf.systemBundlesStartLevel=50


#
# Delay console startup until bundles have been properly started
#
karaf.delay.console=true
karaf.startup.message=Please wait while Apache ServiceMix is starting...


================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/jre.properties
================================================
################################################################################
#
#    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.
#
################################################################################

#
# Java platform package export properties.
#

# Standard package set.  Note that:
#   - javax.transaction* is exported with a mandatory attribute
jre-1.6= \
 javax.accessibility, \
 javax.activation;version="1.1", \
 javax.activity, \
 javax.annotation;version="1.0", \
 javax.annotation.processing;version="1.0", \
 javax.crypto, \
 javax.crypto.interfaces, \
 javax.crypto.spec, \
 javax.imageio, \
 javax.imageio.event, \
 javax.imageio.metadata, \
 javax.imageio.plugins.bmp, \
 javax.imageio.plugins.jpeg, \
 javax.imageio.spi, \
 javax.imageio.stream, \
 javax.jws;version="2.0", \
 javax.jws.soap;version="2.0", \
 javax.lang.model, \
 javax.lang.model.element, \
 javax.lang.model.type, \
 javax.lang.model.util, \
 javax.management, \
 javax.management.loading, \
 javax.management.modelmbean, \
 javax.management.monitor, \
 javax.management.openmbean, \
 javax.management.relation, \
 javax.management.remote, \
 javax.management.remote.rmi, \
 javax.management.timer, \
 javax.naming, \
 javax.naming.directory, \
 javax.naming.event, \
 javax.naming.ldap, \
 javax.naming.spi, \
 javax.net, \
 javax.net.ssl, \
 javax.print, \
 javax.print.attribute, \
 javax.print.attribute.standard, \
 javax.print.event, \
 javax.rmi, \
 javax.rmi.CORBA, \
 javax.rmi.ssl, \
 javax.script, \
 javax.security.auth, \
 javax.security.auth.callback, \
 javax.security.auth.kerberos, \
 javax.security.auth.login, \
 javax.security.auth.spi, \
 javax.security.auth.x500, \
 javax.security.cert, \
 javax.security.sasl, \
 javax.sound.midi, \
 javax.sound.midi.spi, \
 javax.sound.sampled, \
 javax.sound.sampled.spi, \
 javax.sql, \
 javax.sql.rowset, \
 javax.sql.rowset.serial, \
 javax.sql.rowset.spi, \
 javax.swing, \
 javax.swing.border, \
 javax.swing.colorchooser, \
 javax.swing.event, \
 javax.swing.filechooser, \
 javax.swing.plaf, \
 javax.swing.plaf.basic, \
 javax.swing.plaf.metal, \
 javax.swing.plaf.multi, \
 javax.swing.plaf.synth, \
 javax.swing.table, \
 javax.swing.text, \
 javax.swing.text.html, \
 javax.swing.text.html.parser, \
 javax.swing.text.rtf, \
 javax.swing.tree, \
 javax.swing.undo, \
 javax.tools, \
 javax.transaction; javax.transaction.xa; partial=true; mandatory:=partial, \
 javax.xml, \
 javax.xml.bind;version="2.2.1", \
 javax.xml.bind.annotation;version="2.2.1", \
 javax.xml.bind.annotation.adapters;version="2.2.1", \
 javax.xml.bind.attachment;version="2.2.1", \
 javax.xml.bind.helpers;version="2.2.1", \
 javax.xml.bind.util;version="2.2.1", \
 javax.xml.crypto, \
 javax.xml.crypto.dom, \
 javax.xml.crypto.dsig, \
 javax.xml.crypto.dsig.dom, \
 javax.xml.crypto.dsig.keyinfo, \
 javax.xml.crypto.dsig.spec, \
 javax.xml.datatype, \
 javax.xml.namespace, \
 javax.xml.parsers, \
 javax.xml.soap;version="1.3", \
 javax.xml.stream;version="1.2", \
 javax.xml.stream.events;version="1.2", \
 javax.xml.stream.util;version="1.2", \
 javax.xml.transform, \
 javax.xml.transform.dom, \
 javax.xml.transform.sax, \
 javax.xml.transform.stax, \
 javax.xml.transform.stream, \
 javax.xml.validation, \
 javax.xml.ws;version="2.2", \
 javax.xml.ws.handler;version="2.2", \
 javax.xml.ws.handler.soap;version="2.2", \
 javax.xml.ws.http;version="2.2", \
 javax.xml.ws.soap;version="2.2", \
 javax.xml.ws.spi;version="2.2", \
 javax.xml.ws.wsaddressing;version="2.2", \
 javax.xml.ws.spi.http;version="2.2", \
 javax.xml.xpath, \
 org.ietf.jgss, \
 org.omg.CORBA, \
 org.omg.CORBA_2_3, \
 org.omg.CORBA_2_3.portable, \
 org.omg.CORBA.DynAnyPackage, \
 org.omg.CORBA.ORBPackage, \
 org.omg.CORBA.portable, \
 org.omg.CORBA.TypeCodePackage, \
 org.omg.CosNaming, \
 org.omg.CosNaming.NamingContextExtPackage, \
 org.omg.CosNaming.NamingContextPackage, \
 org.omg.Dynamic, \
 org.omg.DynamicAny, \
 org.omg.DynamicAny.DynAnyFactoryPackage, \
 org.omg.DynamicAny.DynAnyPackage, \
 org.omg.IOP, \
 org.omg.IOP.CodecFactoryPackage, \
 org.omg.IOP.CodecPackage, \
 org.omg.Messaging, \
 org.omg.PortableInterceptor, \
 org.omg.PortableInterceptor.ORBInitInfoPackage, \
 org.omg.PortableServer, \
 org.omg.PortableServer.CurrentPackage, \
 org.omg.PortableServer.POAManagerPackage, \
 org.omg.PortableServer.POAPackage, \
 org.omg.PortableServer.portable, \
 org.omg.PortableServer.ServantLocatorPackage, \
 org.omg.SendingContext, \
 org.omg.stub.java.rmi, \
 org.omg.stub.javax.management.remote.rmi, \
 org.w3c.dom, \
 org.w3c.dom.bootstrap, \
 org.w3c.dom.css, \
 org.w3c.dom.events, \
 org.w3c.dom.html, \
 org.w3c.dom.ls, \
 org.w3c.dom.ranges, \
 org.w3c.dom.stylesheets, \
 org.w3c.dom.traversal, \
 org.w3c.dom.views, \
 org.w3c.dom.xpath, \
 org.xml.sax, \
 org.xml.sax.ext, \
 org.xml.sax.helpers

# Standard package set.  Note that:
#   - javax.transaction* is exported with a mandatory attribute
jre-1.7= \
 javax.accessibility, \
 javax.activation;version="1.1", \
 javax.activity, \
 javax.annotation;version="1.0", \
 javax.annotation.processing;version="1.0", \
 javax.crypto, \
 javax.crypto.interfaces, \
 javax.crypto.spec, \
 javax.imageio, \
 javax.imageio.event, \
 javax.imageio.metadata, \
 javax.imageio.plugins.bmp, \
 javax.imageio.plugins.jpeg, \
 javax.imageio.spi, \
 javax.imageio.stream, \
 javax.jws;version="2.0", \
 javax.jws.soap;version="2.0", \
 javax.lang.model, \
 javax.lang.model.element, \
 javax.lang.model.type, \
 javax.lang.model.util, \
 javax.management, \
 javax.management.loading, \
 javax.management.modelmbean, \
 javax.management.monitor, \
 javax.management.openmbean, \
 javax.management.relation, \
 javax.management.remote, \
 javax.management.remote.rmi, \
 javax.management.timer, \
 javax.naming, \
 javax.naming.directory, \
 javax.naming.event, \
 javax.naming.ldap, \
 javax.naming.spi, \
 javax.net, \
 javax.net.ssl, \
 javax.print, \
 javax.print.attribute, \
 javax.print.attribute.standard, \
 javax.print.event, \
 javax.rmi, \
 javax.rmi.CORBA, \
 javax.rmi.ssl, \
 javax.script, \
 javax.security.auth, \
 javax.security.auth.callback, \
 javax.security.auth.kerberos, \
 javax.security.auth.login, \
 javax.security.auth.spi, \
 javax.security.auth.x500, \
 javax.security.cert, \
 javax.security.sasl, \
 javax.sound.midi, \
 javax.sound.midi.spi, \
 javax.sound.sampled, \
 javax.sound.sampled.spi, \
 javax.sql, \
 javax.sql.rowset, \
 javax.sql.rowset.serial, \
 javax.sql.rowset.spi, \
 javax.swing, \
 javax.swing.border, \
 javax.swing.colorchooser, \
 javax.swing.event, \
 javax.swing.filechooser, \
 javax.swing.plaf, \
 javax.swing.plaf.basic, \
 javax.swing.plaf.metal, \
 javax.swing.plaf.multi, \
 javax.swing.plaf.synth, \
 javax.swing.table, \
 javax.swing.text, \
 javax.swing.text.html, \
 javax.swing.text.html.parser, \
 javax.swing.text.rtf, \
 javax.swing.tree, \
 javax.swing.undo, \
 javax.tools, \
 javax.transaction; javax.transaction.xa; partial=true; mandatory:=partial, \
 javax.xml, \
 javax.xml.bind;version="2.2.1", \
 javax.xml.bind.annotation;version="2.2.1", \
 javax.xml.bind.annotation.adapters;version="2.2.1", \
 javax.xml.bind.attachment;version="2.2.1", \
 javax.xml.bind.helpers;version="2.2.1", \
 javax.xml.bind.util;version="2.2.1", \
 javax.xml.crypto, \
 javax.xml.crypto.dom, \
 javax.xml.crypto.dsig, \
 javax.xml.crypto.dsig.dom, \
 javax.xml.crypto.dsig.keyinfo, \
 javax.xml.crypto.dsig.spec, \
 javax.xml.datatype, \
 javax.xml.namespace, \
 javax.xml.parsers, \
 javax.xml.soap;version="1.3", \
 javax.xml.stream;version="1.2", \
 javax.xml.stream.events;version="1.2", \
 javax.xml.stream.util;version="1.2", \
 javax.xml.transform, \
 javax.xml.transform.dom, \
 javax.xml.transform.sax, \
 javax.xml.transform.stax, \
 javax.xml.transform.stream, \
 javax.xml.validation, \
 javax.xml.ws;version="2.2", \
 javax.xml.ws.handler;version="2.2", \
 javax.xml.ws.handler.soap;version="2.2", \
 javax.xml.ws.http;version="2.2", \
 javax.xml.ws.soap;version="2.2", \
 javax.xml.ws.spi;version="2.2", \
 javax.xml.ws.wsaddressing;version="2.2", \
 javax.xml.ws.spi.http;version="2.2", \
 javax.xml.xpath, \
 org.ietf.jgss, \
 org.omg.CORBA, \
 org.omg.CORBA_2_3, \
 org.omg.CORBA_2_3.portable, \
 org.omg.CORBA.DynAnyPackage, \
 org.omg.CORBA.ORBPackage, \
 org.omg.CORBA.portable, \
 org.omg.CORBA.TypeCodePackage, \
 org.omg.CosNaming, \
 org.omg.CosNaming.NamingContextExtPackage, \
 org.omg.CosNaming.NamingContextPackage, \
 org.omg.Dynamic, \
 org.omg.DynamicAny, \
 org.omg.DynamicAny.DynAnyFactoryPackage, \
 org.omg.DynamicAny.DynAnyPackage, \
 org.omg.IOP, \
 org.omg.IOP.CodecFactoryPackage, \
 org.omg.IOP.CodecPackage, \
 org.omg.Messaging, \
 org.omg.PortableInterceptor, \
 org.omg.PortableInterceptor.ORBInitInfoPackage, \
 org.omg.PortableServer, \
 org.omg.PortableServer.CurrentPackage, \
 org.omg.PortableServer.POAManagerPackage, \
 org.omg.PortableServer.POAPackage, \
 org.omg.PortableServer.portable, \
 org.omg.PortableServer.ServantLocatorPackage, \
 org.omg.SendingContext, \
 org.omg.stub.java.rmi, \
 org.omg.stub.javax.management.remote.rmi, \
 org.w3c.dom, \
 org.w3c.dom.bootstrap, \
 org.w3c.dom.css, \
 org.w3c.dom.events, \
 org.w3c.dom.html, \
 org.w3c.dom.ls, \
 org.w3c.dom.ranges, \
 org.w3c.dom.stylesheets, \
 org.w3c.dom.traversal, \
 org.w3c.dom.views, \
 org.w3c.dom.xpath, \
 org.xml.sax, \
 org.xml.sax.ext, \
 org.xml.sax.helpers, \
 com.sun.nio.sctp

jre-1.8= \
 javax.accessibility, \
 javax.activation;version="1.1", \
 javax.activity, \
 javax.annotation;version="1.0", \
 javax.annotation.processing;version="1.0", \
 javax.crypto, \
 javax.crypto.interfaces, \
 javax.crypto.spec, \
 javax.imageio, \
 javax.imageio.event, \
 javax.imageio.metadata, \
 javax.imageio.plugins.bmp, \
 javax.imageio.plugins.jpeg, \
 javax.imageio.spi, \
 javax.imageio.stream, \
 javax.jws;version="2.0", \
 javax.jws.soap;version="2.0", \
 javax.lang.model, \
 javax.lang.model.element, \
 javax.lang.model.type, \
 javax.lang.model.util, \
 javax.management, \
 javax.management.loading, \
 javax.management.modelmbean, \
 javax.management.monitor, \
 javax.management.openmbean, \
 javax.management.relation, \
 javax.management.remote, \
 javax.management.remote.rmi, \
 javax.management.timer, \
 javax.naming, \
 javax.naming.directory, \
 javax.naming.event, \
 javax.naming.ldap, \
 javax.naming.spi, \
 javax.net, \
 javax.net.ssl, \
 javax.print, \
 javax.print.attribute, \
 javax.print.attribute.standard, \
 javax.print.event, \
 javax.rmi, \
 javax.rmi.CORBA, \
 javax.rmi.ssl, \
 javax.script, \
 javax.security.auth, \
 javax.security.auth.callback, \
 javax.security.auth.kerberos, \
 javax.security.auth.login, \
 javax.security.auth.spi, \
 javax.security.auth.x500, \
 javax.security.cert, \
 javax.security.sasl, \
 javax.sound.midi, \
 javax.sound.midi.spi, \
 javax.sound.sampled, \
 javax.sound.sampled.spi, \
 javax.sql, \
 javax.sql.rowset, \
 javax.sql.rowset.serial, \
 javax.sql.rowset.spi, \
 javax.swing, \
 javax.swing.border, \
 javax.swing.colorchooser, \
 javax.swing.event, \
 javax.swing.filechooser, \
 javax.swing.plaf, \
 javax.swing.plaf.basic, \
 javax.swing.plaf.metal, \
 javax.swing.plaf.multi, \
 javax.swing.plaf.synth, \
 javax.swing.table, \
 javax.swing.text, \
 javax.swing.text.html, \
 javax.swing.text.html.parser, \
 javax.swing.text.rtf, \
 javax.swing.tree, \
 javax.swing.undo, \
 javax.tools, \
 javax.transaction; javax.transaction.xa; partial=true; mandatory:=partial, \
 javax.xml, \
 javax.xml.bind;version="2.2.1", \
 javax.xml.bind.annotation;version="2.2.1", \
 javax.xml.bind.annotation.adapters;version="2.2.1", \
 javax.xml.bind.attachment;version="2.2.1", \
 javax.xml.bind.helpers;version="2.2.1", \
 javax.xml.bind.util;version="2.2.1", \
 javax.xml.crypto, \
 javax.xml.crypto.dom, \
 javax.xml.crypto.dsig, \
 javax.xml.crypto.dsig.dom, \
 javax.xml.crypto.dsig.keyinfo, \
 javax.xml.crypto.dsig.spec, \
 javax.xml.datatype, \
 javax.xml.namespace, \
 javax.xml.parsers, \
 javax.xml.soap;version="1.3", \
 javax.xml.stream;version="1.2", \
 javax.xml.stream.events;version="1.2", \
 javax.xml.stream.util;version="1.2", \
 javax.xml.transform, \
 javax.xml.transform.dom, \
 javax.xml.transform.sax, \
 javax.xml.transform.stax, \
 javax.xml.transform.stream, \
 javax.xml.validation, \
 javax.xml.ws;version="2.2", \
 javax.xml.ws.handler;version="2.2", \
 javax.xml.ws.handler.soap;version="2.2", \
 javax.xml.ws.http;version="2.2", \
 javax.xml.ws.soap;version="2.2", \
 javax.xml.ws.spi;version="2.2", \
 javax.xml.ws.wsaddressing;version="2.2", \
 javax.xml.ws.spi.http;version="2.2", \
 javax.xml.xpath, \
 javafx.animation, \
 javafx.application, \
 javafx.beans, \
 javafx.beans.binding, \
 javafx.beans.property, \
 javafx.beans.property.adapter, \
 javafx.beans.value, \
 javafx.collections, \
 javafx.collections.transformation, \
 javafx.concurrent, \
 javafx.css, \
 javafx.embed.swing, \
 javafx.embed.swt, \
 javafx.event, \
 javafx.fxml, \
 javafx.geometry, \
 javafx.print, \
 javafx.scene, \
 javafx.scene.canvas, \
 javafx.scene.chart, \
 javafx.scene.control, \
 javafx.scene.control.cell, \
 javafx.scene.effect, \
 javafx.scene.image, \
 javafx.scene.input, \
 javafx.scene.layout, \
 javafx.scene.media, \
 javafx.scene.paint, \
 javafx.scene.shape, \
 javafx.scene.text, \
 javafx.scene.transform, \
 javafx.scene.web, \
 javafx.stage, \
 javafx.util, \
 javafx.util.converter, \
 netscape.javascript, \
 org.ietf.jgss, \
 org.omg.CORBA, \
 org.omg.CORBA_2_3, \
 org.omg.CORBA_2_3.portable, \
 org.omg.CORBA.DynAnyPackage, \
 org.omg.CORBA.ORBPackage, \
 org.omg.CORBA.portable, \
 org.omg.CORBA.TypeCodePackage, \
 org.omg.CosNaming, \
 org.omg.CosNaming.NamingContextExtPackage, \
 org.omg.CosNaming.NamingContextPackage, \
 org.omg.Dynamic, \
 org.omg.DynamicAny, \
 org.omg.DynamicAny.DynAnyFactoryPackage, \
 org.omg.DynamicAny.DynAnyPackage, \
 org.omg.IOP, \
 org.omg.IOP.CodecFactoryPackage, \
 org.omg.IOP.CodecPackage, \
 org.omg.Messaging, \
 org.omg.PortableInterceptor, \
 org.omg.PortableInterceptor.ORBInitInfoPackage, \
 org.omg.PortableServer, \
 org.omg.PortableServer.CurrentPackage, \
 org.omg.PortableServer.POAManagerPackage, \
 org.omg.PortableServer.POAPackage, \
 org.omg.PortableServer.portable, \
 org.omg.PortableServer.ServantLocatorPackage, \
 org.omg.SendingContext, \
 org.omg.stub.java.rmi, \
 org.omg.stub.javax.management.remote.rmi, \
 org.w3c.dom, \
 org.w3c.dom.bootstrap, \
 org.w3c.dom.css, \
 org.w3c.dom.events, \
 org.w3c.dom.html, \
 org.w3c.dom.ls, \
 org.w3c.dom.ranges, \
 org.w3c.dom.stylesheets, \
 org.w3c.dom.traversal, \
 org.w3c.dom.views, \
 org.w3c.dom.xpath, \
 org.xml.sax, \
 org.xml.sax.ext, \
 org.xml.sax.helpers, \
 com.sun.nio.sctp


================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/org.apache.activemq.webconsole.cfg
================================================
## ---------------------------------------------------------------------------
## 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.
## ---------------------------------------------------------------------------

webconsole.jms.url=${activemq.url}
webconsole.jmx.url=service:jmx:rmi:///jndi/rmi://localhost:1099/karaf-${karaf.name}
webconsole.jmx.user=${activemq.jmx.user}
webconsole.jmx.password=${activemq.jmx.password}
webconsole.jms.user=${activemq.jms.user}
webconsole.jms.password=${activemq.jms.password}

================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/org.apache.aries.transaction.cfg
================================================
#
# 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.
#
#
aries.transaction.timeout=600
aries.transaction.howl.logFileDir=${karaf.data}/txlog/
aries.transaction.recoverable=true


================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/org.apache.cxf.wsn.cfg
================================================
#
# 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.
#
#
cxf.wsn.activemq = ${activemq.url.vm}
cxf.wsn.rootUrl = http://0.0.0.0:8182
cxf.wsn.context = /wsn
cxf.wsn.activemq.username=${activemq.jms.user}
cxf.wsn.activemq.password=${activemq.jms.password}


================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/org.ops4j.pax.logging.cfg
================================================
################################################################################
#
#    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.
#
################################################################################

# Root logger
log4j.rootLogger=INFO, out, osgi:VmLogAppender
log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer

# To avoid flooding the log when using DEBUG level on an ssh connection and doing log:tail
log4j.logger.org.apache.sshd.server.channel.ChannelSession = INFO

# Avoid extensive logging
log4j.logger.org.apache.aries.spifly.dynamic.bundle=WARN

# Security audit logger
log4j.logger.org.apache.karaf.jaas.modules.audit=INFO, audit
log4j.additivity.org.apache.karaf.jaas.modules.audit=false

# CONSOLE appender not used by default
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
# use this for source code lines enabled in the logs (beware it impacts performance)
#log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n

# File appender
log4j.appender.out=org.apache.log4j.RollingFileAppender
log4j.appender.out.layout=org.apache.log4j.PatternLayout
log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
# use this for source code lines enabled in the logs (beware it impacts performance)
#log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
log4j.appender.out.file=${karaf.data}/log/servicemix.log
log4j.appender.out.append=true
log4j.appender.out.maxFileSize=1MB
log4j.appender.out.maxBackupIndex=10

# Audit appender
log4j.appender.audit=org.apache.log4j.RollingFileAppender
log4j.appender.audit.layout=org.apache.log4j.PatternLayout
log4j.appender.audit.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
# use this for source code lines enabled in the logs (beware it impacts performance)
#log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
log4j.appender.audit.file=${karaf.data}/security/audit.log
log4j.appender.audit.append=true
log4j.appender.audit.maxFileSize=1MB
log4j.appender.audit.maxBackupIndex=10

# Sift appender
log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender
log4j.appender.sift.key=bundle.name
log4j.appender.sift.default=servicemix
log4j.appender.sift.appender=org.apache.log4j.FileAppender
log4j.appender.sift.appender.layout=org.apache.log4j.PatternLayout
log4j.appender.sift.appender.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %m%n
# use this for source code lines enabled in the logs (beware it impacts performance)
#log4j.appender.sift.appender.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n
log4j.appender.sift.appender.file=${karaf.data}/log/$\\{bundle.name\\}.log
log4j.appender.sift.appender.append=true

# help with identification of maven-related problems with pax-url-aether
#log4j.logger.shaded.org.eclipse.aether = TRACE
#log4j.logger.shaded.org.apache.http.headers = DEBUG
#log4j.logger.org.ops4j.pax.url.mvn = TRACE

================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/org.ops4j.pax.url.mvn.cfg
================================================
################################################################################
#
#    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.
#
################################################################################

#
# see: https://ops4j1.jira.com/wiki/display/paxurl/Aether+Configuration
#

#
# If set to true, the following property will not allow any certificate to be used
# when accessing Maven repositories through SSL
#
org.ops4j.pax.url.mvn.certificateCheck=true

#
# Path to the local Maven settings file.
# The repositories defined in this file will be automatically added to the list
# of default repositories if the 'org.ops4j.pax.url.mvn.repositories' property
# below is not set.
# The following locations are checked for the existence of the settings.xml file
#   * 1. looks for the specified url
#   * 2. if not found looks for ${user.home}/.m2/settings.xml
#   * 3. if not found looks for ${maven.home}/conf/settings.xml
#   * 4. if not found looks for ${M2_HOME}/conf/settings.xml
#
# Properties prefixed with "org.ops4j.pax.url.mvn." have
# higher priority except <proxies> element. HTTP proxies should be configured in
# settings file
#org.ops4j.pax.url.mvn.settings=

#
# Path to the local Maven repository which is used to avoid downloading
# artifacts when they already exist locally.
# The value of this property will be extracted from the settings.xml file
# above, or defaulted to:
#     System.getProperty( "user.home" ) + "/.m2/repository"
#
# leaving this option commented makes the system dependent on external
# configuration, which is not always desired
# "localRepository" is the target location for artifacts downloaded from
# "remote repositories"
#org.ops4j.pax.url.mvn.localRepository=

#
# Default this to false. It's just weird to use undocumented repos
# "false" means that http://repo1.maven.org/maven2@id=central won't be
# implicitly used as remote repository
#
org.ops4j.pax.url.mvn.useFallbackRepositories=false

#
# Comma separated list of repositories scanned when resolving an artifact.
# list of repositories searched in the first place, should contain
# ${runtime.home}/${karaf.default.repository}.
# if "org.ops4j.pax.url.mvn.localRepository" is defined and it's not
# ~/.m2/repository, it's recommended (at least for dev purposes) to add
# ~/.m2/repository to defaultRepositories
# each of these repositories is checked by aether as "local repository". if
# artifact isn't found, "repositories" are searched next
#
# Those repositories will be checked before iterating through the
#    below list of repositories and even before the local repository
# A repository url can be appended with zero or more of the following flags:
#    @snapshots  : the repository contains snaphots
#    @noreleases : the repository does not contain any released artifacts
#
# The following property value will add the system folder as a repo.
#
org.ops4j.pax.url.mvn.defaultRepositories=\
    file:${karaf.home}/${karaf.default.repository}@id=system.repository@snapshots,\
    file:${karaf.data}/kar@id=kar.repository@multi@snapshots,\
    file:${karaf.base}/${karaf.default.repository}@id=child.system.repository@snapshots,\
    file:${karaf.home}/local-repo@snapshots@id=system.local-repo

#
# if "defaultLocalRepoAsRemote" is set do *any* value, localRepository will be
# added to the list of remote repositories being searched for artifacts
#
#org.ops4j.pax.url.mvn.defaultLocalRepoAsRemote = true

#
# Comma separated list of repositories scanned when resolving an artifact.
# list of repositories searched after resolution fails for "defaultRepositories"
# These are true remote repositories accessed using maven/aether/wagon
# mechanisms. If any repository contains required artifact, it is then written
# to "localRepository"
#
# if this list is _prepended_ with '+' sign, all repositories from active
# profiles defined in effective settings.xml file will be _appended_ to this
# list
# The default list includes the following repositories:
#    http://repo1.maven.org/maven2@id=central
#    http://repository.springsource.com/maven/bundles/release@id=spring.ebr
#    http://repository.springsource.com/maven/bundles/external@id=spring.ebr.external
#    http://zodiac.springsource.com/maven/bundles/release@id=gemini
#    http://repository.apache.org/content/groups/snapshots-group@id=apache@snapshots@noreleases
#    https://oss.sonatype.org/content/repositories/snapshots@id=sonatype.snapshots.deploy@snapshots@noreleases
#    https://oss.sonatype.org/content/repositories/ops4j-snapshots@id=ops4j.sonatype.snapshots.deploy@snapshots@noreleases
# To add repositories to the default ones, prepend '+' to the list of repositories
# to add.
# A repository url can be appended with zero or more of the following flags:
#    @snapshots  : the repository contains snapshots
#    @noreleases : the repository does not contain any released artifacts
#    @id=repository.id : the id for the repository, just like in the
#        settings.xml this is optional but recommended
#
org.ops4j.pax.url.mvn.repositories= \
    http://repo1.maven.org/maven2@id=central, \
    http://repository.springsource.com/maven/bundles/release@id=spring.ebr.release, \
    http://repository.springsource.com/maven/bundles/external@id=spring.ebr.external, \
    http://zodiac.springsource.com/maven/bundles/release@id=gemini, \
    http://repository.apache.org/content/groups/snapshots-group@id=apache@snapshots@noreleases, \
    https://oss.sonatype.org/content/repositories/snapshots@id=sonatype.snapshots.deploy@snapshots@noreleases, \
    https://oss.sonatype.org/content/repositories/ops4j-snapshots@id=ops4j.sonatype.snapshots.deploy@snapshots@noreleases

#
# Global policies override repository-specific settings (@checksum=..., @update=..., @releasesUpdate=..., ...)
#
#org.ops4j.pax.url.mvn.globalUpdatePolicy = daily
#org.ops4j.pax.url.mvn.globalChecksumPolicy = warn

#
# socket and connection configuration (pax-url-aether 2.5.0)
#
# default value for connection and read timeouts, when socket.readTimeout and socket.connectionTimeout
# are not specified
org.ops4j.pax.url.mvn.timeout = 5000
# timeout in ms when establishing http connection during artifact resolution
org.ops4j.pax.url.mvn.socket.connectionTimeout = 5000
# timeout in ms when reading data after connecting to remote repository
org.ops4j.pax.url.mvn.socket.readTimeout = 30000
# SO_KEEPALIVE option for sockets, defaults to false
org.ops4j.pax.url.mvn.socket.keepAlive = false
# SO_LINGER option for sockets, defaults to -1
org.ops4j.pax.url.mvn.socket.linger = -1
# SO_REUSEADDR option for sockets, defaults to false
org.ops4j.pax.url.mvn.socket.reuseAddress = false
# TCP_NODELAY option for sockets, defaults to true
org.ops4j.pax.url.mvn.socket.tcpNoDelay = true
# Configure buffer size for HTTP connections (output and input buffers), defaults to 8192 bytes
org.ops4j.pax.url.mvn.connection.bufferSize = 8192
# Number of connection retries after failure is detected in http client. httpclient uses default value "3"
org.ops4j.pax.url.mvn.connection.retryCount = 3

================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/org.ops4j.pax.web.cfg.empty.stub
================================================
################################################################################
#
#    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.
#
#################################################################################

#################################################################################
#
#    This is a stub configuration file for pax-web ssl configuration.
#    More details please refer to 
#    http://wiki.ops4j.org/display/paxweb/SSL+Configuration
#    Important Notes: If file named org.ops4j.pax.web.cfg in etc folder,
#                     Pax Web will always try to read configuration from
                      this file, so any org.ops4j.pax.web configuration 
                      in http feature get ignored, that's why we name this 
                      file as org.ops4j.pax.web.empty.stub.
                      If you need this configuration file, rename it to
                      org.ops4j.pax.web before use it.
#################################################################################

#org.osgi.service.http.secure.enabled=true
#org.ops4j.pax.web.ssl.keystore=etc/servicemix.jks
#org.ops4j.pax.web.ssl.password=password
#org.ops4j.pax.web.ssl.keypassword=password
#org.osgi.service.http.port.secure=8443
org.ops4j.pax.web.config.file=etc/jetty.xml
org.osgi.service.http.port=8181
javax.servlet.context.tempdir=data/pax-web-jsp


================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/system.properties
================================================
################################################################################
#
#    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.
#
################################################################################

#
# The properties defined in this file will be made available through system
# properties at the very beginning of the Karaf's boot process.
#


# Log level when the pax-logging service is not available
# This level will only be used while the pax-logging service bundle
# is not fully available.
# To change log levels, please refer to the org.ops4j.pax.logging.cfg file
# instead.
org.ops4j.pax.logging.DefaultServiceLog.level = ERROR

#
# Name of this Karaf instance.
#
karaf.name = root

#
# Default repository where bundles will be loaded from before using
# other Maven repositories.  For the full Maven configuration, see
# the org.ops4j.pax.url.mvn.cfg file.
#
karaf.default.repository = system

#
# Location of a shell script that will be run when starting a shell
# session.  This script can be used to create aliases and define
# additional commands.
#
karaf.shell.init.script = ${karaf.etc}/shell.init.script

#
# Sets the maximum size of the shell command history. If not set,
# defaults to 500 entries. Setting to 0 will disable history.
#
# karaf.shell.history.maxSize = 0

#
# Deletes the entire karaf.data directory at every start
#
karaf.clean.all = false

#
# Deletes the karaf.data/cache directory at every start
#
karaf.clean.cache = false

#
# User name for the Karaf local console
#
karaf.local.user = karaf

#
# Roles to use when for the default user in the local Karaf console.
#
# The syntax is the following:
#   [classname:]principal
# where classname is the class name of the principal object
# (defaults to org.apache.karaf.jaas.modules.RolePrincipal)
# and principal is the name of the principal of that class
# (defaults to instance).
#
karaf.local.roles = admin,manager,viewer,systembundles

#
# Set this empty property to avoid errors when validating xml documents.
#
xml.catalog.files =

#
# Suppress the bell in the console when hitting backspace too many times
# for example
#
jline.nobell = true

#
# ServiceMix specs options
#
org.apache.servicemix.specs.debug = false
org.apache.servicemix.specs.timeout = 0

#
# Settings for the OSGi 4.3 Weaving
# By default, we will not weave any classes. Change this setting to include classes
# that you application needs to have woven.
#
org.apache.aries.proxy.weaving.enabled = none
# Classes not to weave - Aries default + Xerces which is known to have issues.
org.apache.aries.proxy.weaving.disabled = org.objectweb.asm.*,org.slf4j.*,org.apache.log4j.*,javax.*,org.apache.xerces.*

#
# By default, only Karaf shell commands are secured, but additional services can be
# secured by expanding this filter
#
karaf.secured.services = (&(osgi.command.scope=*)(osgi.command.function=*))

#
# By default, if there's no ACL policy for a certain karaf command, this command is allowed to access
# without the RBAC. We can change this behavior by enable the following property, which means
# if a karaf command has no corresponding ACL then access it must have one of the karaf.secured.command.compulsory.roles
#
#karaf.secured.command.compulsory.roles=admin

#
# Security properties
#
# To enable OSGi security, uncomment the properties below,
# install the framework-security feature and restart.
#
#java.security.policy=${karaf.etc}/all.policy
#org.osgi.framework.security=osgi
#org.osgi.framework.trust.repositories=${karaf.etc}/trustStore.ks

#
# HA/Lock configuration
#
# Karaf uses a lock mechanism to know which instance is the master (HA)
# The lock can be on the filesystem (default) or on a database.
#
# See http://karaf.apache.org/manual/latest/users-guide/failover.html for details.
#
# Even using a single instance, Karaf creates the lock file
# You can specify the location of the lock file using the
# karaf.lock.dir=/path/to/the/directory/containing/the/lock
#
# By default, the slave instances start but are passive.
# If you want to prevent the slave instances startup, you can use
# the karaf.lock.slave.block property (false by default):
# karaf.lock.slave.block=true

#
# Default port for the OSGI HTTP Service
#
org.osgi.service.http.port=8181

#
# Allow usage of ${servicemix.home} as an alias for ${karaf.home}
#
servicemix.home=${karaf.home}

#
# Activemq configuration
#
activemq.broker.name = amq-broker
activemq.port = 61616
activemq.host = localhost
activemq.url = tcp://${activemq.host}:${activemq.port}
activemq.url.vm = vm://${activemq.broker.name}?create=false&waitForStart=10000
activemq.jms.user = smx
activemq.jms.password = smx

#
# Activemq JMX configuration
#
activemq.jmx.url = service:jmx:rmi:///jndi/rmi://localhost:1099/karaf-${karaf.name}
activemq.jmx.user = ${activemq.jms.user}
activemq.jmx.password = ${activemq.jms.password}


javax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
javax.xml.transform.TransformerFactory=org.apache.xalan.processor.TransformerFactoryImpl

#
# CXF Log configuration
#
org.apache.cxf.Logger=org.apache.cxf.common.logging.Slf4jLogger

================================================
FILE: assemblies/apache-servicemix/src/main/resources/etc/users.properties
================================================
################################################################################
#
#    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.
#
################################################################################

#
# This file contains the users, groups, and roles.
# Each line has to be of the format:
#
# USER=PASSWORD,ROLE1,ROLE2,...
# USER=PASSWORD,_g_:GROUP,...
# _g_\:GROUP=ROLE1,ROLE2,...
#
# All users, grousp, and roles entered in this file are available after Karaf startup
# and modifiable via the JAAS command group. These users reside in a JAAS domain
# with the name "karaf".
#
smx = smx,_g_:admingroup
_g_\:admingroup = group,admin,manager,viewer,webconsole,systembundles

# Workaround for SM-2267: sometimes, the webconsole configuration first hands out a ConnectionFactory
# that uses karaf/karaf as the credentials before picking up the settings in system.properties
karaf = karaf,_g_:admingroup


================================================
FILE: assemblies/apache-servicemix/src/main/resources/licenses/asm.txt
================================================
Copyright (c) 2000-2005 INRIA, France Telecom
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holders nor the names of its
   contributors may be used to endorse or promote products derived from
   this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.



================================================
FILE: assemblies/apache-servicemix/src/main/resources/licenses/bsd.txt
================================================
The BSD License

   Copyright (c) <YEAR>, <OWNER>
   All rights reserved.

   Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
    * Neither the name of the <ORGANIZATION> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


================================================
FILE: assemblies/apache-servicemix/src/main/resources/licenses/cddl-1.0.txt
================================================

COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0


      1. Definitions.

            1.1. ÒContributorÓ means each individual or entity that
            creates or contributes to the creation of Modifications.

            1.2. ÒContributor VersionÓ means the combination of the
            Original Software, prior Modifications used by a
            Contributor (if any), and the Modifications made by that
            particular Contributor.

            1.3. ÒCovered SoftwareÓ means (a) the Original Software, or
            (b) Modifications, or (c) the combination of files
            containing Original Software with files containing
            Modifications, in each case including portions thereof.

            1.4. ÒExecutableÓ means the Covered Software in any form
            other than Source Code. 

            1.5. ÒInitial DeveloperÓ means the individual or entity
            that first makes Original Software available under this
            License. 
            
            1.6. ÒLarger WorkÓ means a work which combines Covered
            Software or portions thereof with code not governed by the
            terms of this License.

            1.7. ÒLicenseÓ means this document.

            1.8. ÒLicensableÓ means having the right to grant, to the
            maximum extent possible, whether at the time of the initial
            grant or subsequently acquired, any and all of the rights
            conveyed herein.
            
            1.9. ÒModificationsÓ means the Source Code and Executable
            form of any of the following: 

                  A. Any file that results from an addition to,
                  deletion from or modification of the contents of a
                  file containing Original Software or previous
                  Modifications; 

                  B. Any new file that contains any part of the
                  Original Software or previous Modification; or 

                  C. Any new file that is contributed or otherwise made
                  available under the terms of this License.

            1.10. ÒOriginal SoftwareÓ means the Source Code and
            Executable form of computer software code that is
            originally released under this License. 

            1.11. ÒPatent ClaimsÓ means any patent claim(s), now owned
            or hereafter acquired, including without limitation,
            method, process, and apparatus claims, in any patent
            Licensable by grantor. 

            1.12. ÒSource CodeÓ means (a) the common form of computer
            software code in which modifications are made and (b)
            associated documentation included in or with such code.

            1.13. ÒYouÓ (or ÒYourÓ) means an individual or a legal
            entity exercising rights under, and complying with all of
            the terms of, this License. For legal entities, ÒYouÓ
            includes any entity which controls, is controlled by, or is
            under common control with You. For purposes of this
            definition, ÒcontrolÓ means (a) the power, direct or
            indirect, to cause the direction or management of such
            entity, whether by contract or otherwise, or (b) ownership
            of more than fifty percent (50%) of the outstanding shares
            or beneficial ownership of such entity.

      2. License Grants. 

            2.1. The Initial Developer Grant.

            Conditioned upon Your compliance with Section 3.1 below and
            subject to third party intellectual property claims, the
            Initial Developer hereby grants You a world-wide,
            royalty-free, non-exclusive license: 

                  (a) under intellectual property rights (other than
                  patent or trademark) Licensable by Initial Developer,
                  to use, reproduce, modify, display, perform,
                  sublicense and distribute the Original Software (or
                  portions thereof), with or without Modifications,
                  and/or as part of a Larger Work; and 

                  (b) under Patent Claims infringed by the making,
                  using or selling of Original Software, to make, have
                  made, use, practice, sell, and offer for sale, and/or
                  otherwise dispose of the Original Software (or
                  portions thereof). 

                  (c) The licenses granted in Sections 2.1(a) and (b)
                  are effective on the date Initial Developer first
                  distributes or otherwise makes the Original Software
                  available to a third party under the terms of this
                  License. 

                  (d) Notwithstanding Section 2.1(b) above, no patent
                  license is granted: (1) for code that You delete from
                  the Original Software, or (2) for infringements
                  caused by: (i) the modification of the Original
                  Software, or (ii) the combination of the Original
                  Software with other software or devices. 

            2.2. Contributor Grant.

            Conditioned upon Your compliance with Section 3.1 below and
            subject to third party intellectual property claims, each
            Contributor hereby grants You a world-wide, royalty-free,
            non-exclusive license:

                  (a) under intellectual property rights (other than
                  patent or trademark) Licensable by Contributor to
                  use, reproduce, modify, display, perform, sublicense
                  and distribute the Modifications created by such
                  Contributor (or portions thereof), either on an
                  unmodified basis, with other Modifications, as
                  Covered Software and/or as part of a Larger Work; and
                  

                  (b) under Patent Claims infringed by the making,
                  using, or selling of Modifications made by that
                  Contributor either alone and/or in combination with
                  its Contributor Version (or portions of such
                  combination), to make, use, sell, offer for sale,
                  have made, and/or otherwise dispose of: (1)
                  Modifications made by that Contributor (or portions
                  thereof); and (2) the combination of Modifications
                  made by that Contributor with its Contributor Version
                  (or portions of such combination). 

                  (c) The licenses granted in Sections 2.2(a) and
                  2.2(b) are effective on the date Contributor first
                  distributes or otherwise makes the Modifications
                  available to a third party. 

                  (d) Notwithstanding Section 2.2(b) above, no patent
                  license is granted: (1) for any code that Contributor
                  has deleted from the Contributor Version; (2) for
                  infringements caused by: (i) third party
                  modifications of Contributor Version, or (ii) the
                  combination of Modifications made by that Contributor
                  with other software (except as part of the
                  Contributor Version) or other devices; or (3) under
                  Patent Claims infringed by Covered Software in the
                  absence of Modifications made by that Contributor. 

      3. Distribution Obligations.

            3.1. Availability of Source Code.

            Any Covered Software that You distribute or otherwise make
            available in Executable form must also be made available in
            Source Code form and that Source Code form must be
            distributed only under the terms of this License. You must
            include a copy of this License with every copy of the
            Source Code form of the Covered Software You distribute or
            otherwise make available. You must inform recipients of any
            such Covered Software in Executable form as to how they can
            obtain such Covered Software in Source Code form in a
            reasonable manner on or through a medium customarily used
            for software exchange.

            3.2. Modifications.

            The Modifications that You create or to which You
            contribute are governed by the terms of this License. You
            represent that You believe Your Modifications are Your
            original creation(s) and/or You have sufficient rights to
            grant the rights conveyed by this License.

            3.3. Required Notices.

            You must include a notice in each of Your Modifications
            that identifies You as the Contributor of the Modification.
            You may not remove or alter any copyright, patent or
            trademark notices contained within the Covered Software, or
            any notices of licensing or any descriptive text giving
            attribution to any Contributor or the Initial Developer.

            3.4. Application of Additional Terms.

            You may not offer or impose any terms on any Covered
            Software in Source Code form that alters or restricts the
            applicable version of this License or the recipientsÕ
            rights hereunder. You may choose to offer, and to charge a
            fee for, warranty, support, indemnity or liability
            obligations to one or more recipients of Covered Software.
            However, you may do so only on Your own behalf, and not on
            behalf of the Initial Developer or any Contributor. You
            must make it absolutely clear that any such warranty,
            support, indemnity or liability obligation is offered by
            You alone, and You hereby agree to indemnify the Initial
            Developer and every Contributor for any liability incurred
            by the Initial Developer or such Contributor as a result of
            warranty, support, indemnity or liability terms You offer.
          

            3.5. Distribution of Executable Versions.

            You may distribute the Executable form of the Covered
            Software under the terms of this License or under the terms
            of a license of Your choice, which may contain terms
            different from this License, provided that You are in
            compliance with the terms of this License and that the
            license for the Executable form does not attempt to limit
            or alter the recipientÕs rights in the Source Code form
            from the rights set forth in this License. If You
            distribute the Covered Software in Executable form under a
            different license, You must make it absolutely clear that
            any terms which differ from this License are offered by You
            alone, not by the Initial Developer or Contributor. You
            hereby agree to indemnify the Initial Developer and every
            Contributor for any liability incurred by the Initial
            Developer or such Contributor as a result of any such terms
            You offer.

            3.6. Larger Works.

            You may create a Larger Work by combining Covered Software
            with other code not governed by the terms of this License
            and distribute the Larger Work as a single product. In such
            a case, You must make sure the requirements of this License
            are fulfilled for the Covered Software. 
            
      4. Versions of the License. 

            4.1. New Versions.

            Sun Microsystems, Inc. is the initial license steward and
            may publish revised and/or new versions of this License
            from time to time. Each version will be given a
            distinguishing version number. Except as provided in
            Section 4.3, no one other than the license steward has the
            right to modify this License. 

            4.2. Effect of New Versions.

            You may always continue to use, distribute or otherwise
            make the Covered Software available under the terms of the
            version of the License under which You originally received
            the Covered Software. If the Initial Developer includes a
            notice in the Original Software prohibiting it from being
            distributed or otherwise made available under any
            subsequent version of the License, You must distribute and
            make the Covered Software available under the terms of the
            version of the License under which You originally received
            the Covered Software. Otherwise, You may also choose to
            use, distribute or otherwise make the Covered Software
            available under the terms of any subsequent version of the
            License published by the license steward. 

            4.3. Modified Versions.

            When You are an Initial Developer and You want to create a
            new license for Your Original Software, You may create and
            use a modified version of this License if You: (a) rename
            the license and remove any references to the name of the
            license steward (except to note that the license differs
            from this License); and (b) otherwise make it clear that
            the license contains terms which differ from this License.
            

      5. DISCLAIMER OF WARRANTY.

      COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN ÒAS ISÓ
      BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
      INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
      SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
      PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
      PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
      COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
      INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
      ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
      WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
      ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
      DISCLAIMER. 

      6. TERMINATION. 

            6.1. This License and the rights granted hereunder will
            terminate automatically if You fail to comply with terms
            herein and fail to cure such breach within 30 days of
            becoming aware of the breach. Provisions which, by their
            nature, must remain in effect beyond the termination of
            this License shall survive.

            6.2. If You assert a patent infringement claim (excluding
            declaratory judgment actions) against Initial Developer or
            a Contributor (the Initial Developer or Contributor against
            whom You assert such claim is referred to as ÒParticipantÓ)
            alleging that the Participant Software (meaning the
            Contributor Version where the Participant is a Contributor
            or the Original Software where the Participant is the
            Initial Developer) directly or indirectly infringes any
            patent, then any and all rights granted directly or
            indirectly to You by such Participant, the Initial
            Developer (if the Initial Developer is not the Participant)
            and all Contributors under Sections 2.1 and/or 2.2 of this
            License shall, upon 60 days notice from Participant
            terminate prospectively and automatically at the expiration
            of such 60 day notice period, unless if within such 60 day
            period You withdraw Your claim with respect to the
            Participant Software against such Participant either
            unilaterally or pursuant to a written agreement with
            Participant.

            6.3. In the event of termination under Sections 6.1 or 6.2
            above, all end user licenses that have been validly granted
            by You or any distributor hereunder prior to termination
            (excluding licenses granted to You by any distributor)
            shall survive termination.

      7. LIMITATION OF LIABILITY.

      UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
      (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
      INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
      COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
      LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
      CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
      LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
      STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
      COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
      INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
      LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
      INJURY RESULTING FROM SUCH PARTYÕS NEGLIGENCE TO THE EXTENT
      APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
      NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
      CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
      APPLY TO YOU.

      8. U.S. GOVERNMENT END USERS.

      The Covered Software is a Òcommercial item,Ó as that term is
      defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of Òcommercial
      computer softwareÓ (as that term is defined at 48 C.F.R. ¤
      252.227-7014(a)(1)) and Òcommercial computer software
      documentationÓ as such terms are used in 48 C.F.R. 12.212 (Sept.
      1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1
      through 227.7202-4 (June 1995), all U.S. Government End Users
      acquire Covered Software with only those rights set forth herein.
      This U.S. Government Rights clause is in lieu of, and supersedes,
      any other FAR, DFAR, or other clause or provision that addresses
      Government rights in computer software under this License.

      9. MISCELLANEOUS.

      This License represents the complete agreement concerning subject
      matter hereof. If any provision of this License is held to be
      unenforceable, such provision shall be reformed only to the
      extent necessary to make it enforceable. This License shall be
      governed by the law of the jurisdiction specified in a notice
      contained within the Original Software (except to the extent
      applicable law, if any, provides otherwise), excluding such
      jurisdictionÕs conflict-of-law provisions. Any litigation
      relating to this License shall be subject to the jurisdiction of
      the courts located in the jurisdiction and venue specified in a
      notice contained within the Original Software, with the losing
      party responsible for costs, including, without limitation, court
      costs and reasonable attorneysÕ fees and expenses. The
      application of the United Nations Convention on Contracts for the
      International Sale of Goods is expressly excluded. Any law or
      regulation which provides that the language of a contract shall
      be construed against the drafter shall not apply to this License.
      You agree that You alone are responsible for compliance with the
      United States export administration regulations (and the export
      control laws and regulation of any other countries) when You use,
      distribute or otherwise make available any Covered Software.

      10. RESPONSIBILITY FOR CLAIMS.

      As between Initial Developer and the Contributors, each party is
      responsible for claims and damages arising, directly or
      indirectly, out of its utilization of rights under this License
      and You agree to work with Initial Developer and Contributors to
      distribute such responsibility on an equitable basis. Nothing
      herein is intended or shall be deemed to constitute any admission
      of liability.


================================================
FILE: assemblies/apache-servicemix/src/main/resources/licenses/cpl-1.0.txt
================================================
Common Public License Version 1.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS

"Contribution" means:

    a) in the case of the initial Contributor, the initial code and
documentation distributed under this Agreement, and

    b) in the case of each subsequent Contributor:

    i) changes to the Program, and

    ii) additions to the Program;

    where such changes and/or additions to the Program originate from and are
distributed by that particular Contributor. A Contribution 'originates' from a
Contributor if it was added to the Program by such Contributor itself or anyone
acting on such Contributor's behalf. Contributions do not include additions to
the Program which: (i) are separate modules of software distributed in
conjunction with the Program under their own license agreement, and (ii) are not
derivative works of the Program.

"Contributor" means any person or entity that distributes the Program.

"Licensed Patents " mean patent claims licensable by a Contributor which are
necessarily infringed by the use or sale of its Contribution alone or when
combined with the Program.

"Program" means the Contributions distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement,
including all Contributors.

2. GRANT OF RIGHTS

    a) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free copyright license to
reproduce, prepare derivative works of, publicly display, publicly perform,
distribute and sublicense the Contribution of such Contributor, if any, and such
derivative works, in source code and object code form.

    b) Subject to the terms of this Agreement, each Contributor hereby grants
Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed
Patents to make, use, sell, offer to sell, import and otherwise transfer the
Contribution of such Contributor, if any, in source code and object code form.
This patent license shall apply to the combination of the Contribution and the
Program if, at the time the Contribution is added by the Contributor, such
addition of the Contribution causes such combination to be covered by the
Licensed Patents. The patent license shall not apply to any other combinations
which include the Contribution. No hardware per se is licensed hereunder.

    c) Recipient understands that although each Contributor grants the licenses
to its Contributions set forth herein, no assurances are provided by any
Contributor that the Program does not infringe the patent or other intellectual
property rights of any other entity. Each Contributor disclaims any liability to
Recipient for claims brought by any other entity based on infringement of
intellectual property rights or otherwise. As a condition to exercising the
rights and licenses granted hereunder, each Recipient hereby assumes sole
responsibility to secure any other intellectual property rights needed, if any.
For example, if a third party patent license is required to allow Recipient to
distribute the Program, it is Recipient's responsibility to acquire that license
before distributing the Program.

    d) Each Contributor represents that to its knowledge it has sufficient
copyright rights in its Contribution, if any, to grant the copyright license set
forth in this Agreement.

3. REQUIREMENTS

A Contributor may choose to distribute the Program in object code form under its
own license agreement, provided that:

    a) it complies with the terms and conditions of this Agreement; and

    b) its license agreement:

    i) effectively disclaims on behalf of all Contributors all warranties and
conditions, express and implied, including warranties or conditions of title and
non-infringement, and implied warranties or conditions of merchantability and
fitness for a particular purpose;

    ii) effectively excludes on behalf of all Contributors all liability for
damages, including direct, indirect, special, incidental and consequential
damages, such as lost profits;

    iii) states that any provisions which differ from this Agreement are offered
by that Contributor alone and not by any other party; and

    iv) states that source code for the Program is available from such
Contributor, and informs licensees how to obtain it in a reasonable manner on or
through a medium customarily used for software exchange. 

When the Program is made available in source code form:

    a) it must be made available under this Agreement; and

    b) a copy of this Agreement must be included with each copy of the Program. 

Contributors may not remove or alter any copyright notices contained within the
Program.

Each Contributor must identify itself as the originator of its Contribution, if
any, in a manner that reasonably allows subsequent Recipients to identify the
originator of the Contribution.

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with
respect to end users, business partners and the like. While this license is
intended to facilitate the commercial use of the Program, the Contributor who
includes the Program in a commercial product offering should do so in a manner
which does not create potential liability for other Contributors. Therefore, if
a Contributor includes the Program in a commercial product offering, such
Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
every other Contributor ("Indemnified Contributor") against any losses, damages
and costs (collectively "Losses") arising from claims, lawsuits and other legal
actions brought by a third party against the Indemnified Contributor to the
extent caused by the acts or omissions of such Commercial Contributor in
connection with its distribution of the Program in a commercial product
offering. The obligations in this section do not apply to any claims or Losses
relating to any actual or alleged intellectual property infringement. In order
to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
Contributor in writing of such claim, and b) allow the Commercial Contributor to
control, and cooperate with the Commercial Contributor in, the defense and any
related settlement negotiations. The Indemnified Contributor may participate in
any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product
offering, Product X. That Contributor is then a Commercial Contributor. If that
Commercial Contributor then makes performance claims, or offers warranties
related to Product X, those performance claims and warranties are such
Commercial Contributor's responsibility alone. Under this section, the
Commercial Contributor would have to defend claims against the other
Contributors related to those performance claims and warranties, and if a court
requires any other Contributor to pay any damages as a result, the Commercial
Contributor must pay those damages.

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
Recipient is solely responsible for determining the appropriateness of using and
distributing the Program and assumes all risks associated with its exercise of
rights under this Agreement, including but not limited to the risks and costs of
program errors, compliance with applicable laws, damage to or loss of data,
programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL

If any provision of this Agreement is invalid or unenforceable under applicable
law, it shall not affect the validity or enforceability of the remainder of the
terms of this Agreement, and without further action by the parties hereto, such
provision shall be reformed to the minimum extent necessary to make such
provision valid and enforceable.

If Recipient institutes patent litigation against a Contributor with respect to
a patent applicable to software (including a cross-claim or counterclaim in a
lawsuit), then any patent licenses granted by that Contributor to such Recipient
under this Agreement shall terminate as of the date such litigation is filed. In
addition, if Recipient institutes patent litigation against any entity
(including a cross-claim or counterclaim in a lawsuit) alleging that the Program
itself (excluding combinations of the Program with other software or hardware)
infringes such Recipient's patent(s), then such Recipient's rights granted under
Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to
comply with any of the material terms or conditions of this Agreement and does
not cure such failure in a reasonable period of time after becoming aware of
such noncompliance. If all Recipient's rights under this Agreement terminate,
Recipient agrees to cease use and distribution of the Program as soon as
reasonably practicable. However, Recipient's obligations under this Agreement
and any licenses granted by Recipient relating to the Program shall continue and
survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in
order to avoid inconsistency the Agreement is copyrighted and may only be
modified in the following manner. The Agreement Steward reserves the right to
publish new versions (including revisions) of this Agreement from time to time.
No one other than the Agreement Steward has the right to modify this Agreement.
IBM is the initial Agreement Steward. IBM may assign the responsibility to serve
as the Agreement Steward to a suitable separate entity. Each new version of the
Agreement will be given a distinguishing version number. The Program (including
Contributions) may always be distributed subject to the version of the Agreement
under which it was received. In addition, after a new version of the Agreement
is published, Contributor may elect to distribute the Program (including its
Contributions) under the new version. Except as expressly stated in Sections
2(a) and 2(b) above, Recipient receives no rights or licenses to the
intellectual property of any Contributor under this Agreement, whether
expressly, by implication, estoppel or otherwise. All rights in the Program not
expressly granted under this Agreement are reserved.

This Agreement is governed by the laws of the State of New York and the
intellectual property laws of the United States of America. No party to this
Agreement will bring a legal action under this Agreement more than one year
after the cause of action arose. Each party waives its rights to a jury trial in
any resulting litigation.


================================================
FILE: assemblies/apache-servicemix/src/main/resources/licenses/epl-1.0.txt
================================================
Eclipse Public License - v 1.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS

"Contribution" means:

a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
b) in the case of each subsequent Contributor:
i) changes to the Program, and
ii) additions to the Program;
where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
"Contributor" means any person or entity that distributes the Program.

"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

"Program" means the Contributions distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.

2. GRANT OF RIGHTS

a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.

3. REQUIREMENTS

A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:

a) it complies with the terms and conditions of this Agreement; and
b) its license agreement:
i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.
When the Program is made available in source code form:

a) it must be made available under this Agreement; and
b) a copy of this Agreement must be included with each copy of the Program.
Contributors may not remove or alter any copyright notices contained within the Program.

Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL

If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.

This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.

================================================
FILE: assemblies/apache-servicemix/src/main/resources/licenses/slf4j-mit.txt
================================================
 Copyright (c) 2004-2011 QOS.ch
 All rights reserved.

 Permission is hereby granted, free  of charge, to any person obtaining
 a  copy  of this  software  and  associated  documentation files  (the
 "Software"), to  deal in  the Software without  restriction, including
 without limitation  the rights to  use, copy, modify,  merge, publish,
 distribute,  sublicense, and/or sell  copies of  the Software,  and to
 permit persons to whom the Software  is furnished to do so, subject to
 the following conditions:
 
 The  above  copyright  notice  and  this permission  notice  shall  be
 included in all copies or substantial portions of the Software.
 
 THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
 EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
 MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

================================================
FILE: assemblies/apache-servicemix/src/main/resources/setenv-unix
================================================
#
#    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.
#

export JAVA_MAX_PERM_MEM=256M


================================================
FILE: assemblies/apache-servicemix/src/main/resources/setenv-win
================================================
rem
rem    Licensed to the Apache Software Foundation (ASF) under one or more
rem    contributor license agreements.  See the NOTICE file distributed with
rem    this work for additional information regarding copyright ownership.
rem    The ASF licenses this file to You under the Apache License, Version 2.0
rem    (the "License"); you may not use this file except in compliance with
rem    the License.  You may obtain a copy of the License at
rem
rem       http://www.apache.org/licenses/LICENSE-2.0
rem
rem    Unless required by applicable law or agreed to in writing, software
rem    distributed under the License is distributed on an "AS IS" BASIS,
rem    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem    See the License for the specific language governing permissions and
rem    limitations under the License.
rem

set JAVA_MAX_PERM_MEM=256M


================================================
FILE: assemblies/apache-servicemix-examples/pom.xml
================================================
<?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.
   -->

    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.apache.servicemix.parent</groupId>
        <artifactId>features-parent</artifactId>
        <version>7.1.0-SNAPSHOT</version>
        <relativePath>../../parent/features-parent/pom.xml</relativePath>
    </parent>

    <groupId>org.apache.servicemix</groupId>
    <artifactId>apache-servicemix-examples</artifactId>
    <packaging>jar</packaging>
    <name>Apache ServiceMix :: Assemblies :: ServiceMix Examples</name>

    <build>
        
Download .txt
gitextract_eceba452/

├── .gitignore
├── BUILDING
├── LICENSE
├── NOTICE
├── README
├── RELEASE-NOTES
├── activemq/
│   ├── activemq-camel/
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           ├── java/
│   │           │   └── org/
│   │           │       └── apache/
│   │           │           └── servicemix/
│   │           │               └── activemq/
│   │           │                   └── camel/
│   │           │                       ├── ActiveMQComponent.java
│   │           │                       └── ActiveMQComponentResolver.java
│   │           └── resources/
│   │               └── OSGI-INF/
│   │                   └── blueprint/
│   │                       └── activemq-camel.xml
│   ├── activemq-service/
│   │   ├── README.md
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           └── resources/
│   │               ├── OSGI-INF/
│   │               │   └── blueprint/
│   │               │       └── activemq-service.xml
│   │               └── org.apache.servicemix.activemq.service.cfg
│   └── pom.xml
├── activiti/
│   ├── activiti-config/
│   │   ├── pom.xml
│   │   └── src/
│   │       ├── main/
│   │       │   ├── java/
│   │       │   │   └── org/
│   │       │   │       └── apache/
│   │       │   │           └── servicemix/
│   │       │   │               └── activiti/
│   │       │   │                   └── config/
│   │       │   │                       └── CamelAwareELResolver.java
│   │       │   └── resources/
│   │       │       └── OSGI-INF/
│   │       │           └── blueprint/
│   │       │               └── activiti-config.xml
│   │       └── test/
│   │           ├── java/
│   │           │   └── org/
│   │           │       └── apache/
│   │           │           └── servicemix/
│   │           │               └── activiti/
│   │           │                   └── config/
│   │           │                       └── CamelAwareELResolverTest.java
│   │           └── resources/
│   │               └── log4j.properties
│   └── pom.xml
├── assemblies/
│   ├── apache-servicemix/
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           ├── descriptors/
│   │           │   ├── unix-bin.xml
│   │           │   └── unix-src.xml
│   │           ├── filtered-resources/
│   │           │   └── etc/
│   │           │       ├── org.apache.karaf.features.cfg
│   │           │       └── overrides.properties
│   │           └── resources/
│   │               ├── common-unix-bin.xml
│   │               ├── etc/
│   │               │   ├── custom.properties
│   │               │   ├── jre.properties
│   │               │   ├── org.apache.activemq.webconsole.cfg
│   │               │   ├── org.apache.aries.transaction.cfg
│   │               │   ├── org.apache.cxf.wsn.cfg
│   │               │   ├── org.ops4j.pax.logging.cfg
│   │               │   ├── org.ops4j.pax.url.mvn.cfg
│   │               │   ├── org.ops4j.pax.web.cfg.empty.stub
│   │               │   ├── system.properties
│   │               │   └── users.properties
│   │               ├── licenses/
│   │               │   ├── asm.txt
│   │               │   ├── bsd.txt
│   │               │   ├── cddl-1.0.txt
│   │               │   ├── cpl-1.0.txt
│   │               │   ├── epl-1.0.txt
│   │               │   └── slf4j-mit.txt
│   │               ├── setenv-unix
│   │               └── setenv-win
│   ├── apache-servicemix-examples/
│   │   ├── pom.xml
│   │   └── src/
│   │       └── main/
│   │           └── filtered-resources/
│   │               └── pom.xml
│   ├── features/
│   │   ├── pom.xml
│   │   ├── servicemix-examples/
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           └── feature/
│   │   │               └── feature.xml
│   │   ├── servicemix-features/
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           └── feature/
│   │   │               └── feature.xml
│   │   └── servicemix-kie/
│   │       ├── pom.xml
│   │       └── src/
│   │           └── main/
│   │               └── feature/
│   │                   └── feature.xml
│   └── pom.xml
├── branding/
│   ├── pom.xml
│   └── src/
│       └── main/
│           └── resources/
│               └── org/
│                   └── apache/
│                       └── karaf/
│                           └── branding/
│                               └── branding.properties
├── etc/
│   └── appended-resources/
│       └── supplemental-models.xml
├── examples/
│   ├── README.txt
│   ├── activemq/
│   │   ├── activemq-camel-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── org.apache.servicemix.examples.cfg
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── activemq/
│   │   │           │                       └── MyTransform.java
│   │   │           └── resources/
│   │   │               └── OSGI-INF/
│   │   │                   └── blueprint/
│   │   │                       └── blueprint.xml
│   │   └── pom.xml
│   ├── activiti/
│   │   ├── activiti-camel/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── activiti/
│   │   │           │                       └── ActivitiRouteBuilder.java
│   │   │           └── resources/
│   │   │               └── OSGI-INF/
│   │   │                   ├── activiti/
│   │   │                   │   └── OrderProcess.bpmn20.xml
│   │   │                   └── blueprint/
│   │   │                       └── activiti-camel.xml
│   │   └── pom.xml
│   ├── akka/
│   │   ├── akka-camel/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── resources/
│   │   │       │   │   └── application.conf
│   │   │       │   └── scala/
│   │   │       │       └── org/
│   │   │       │           └── apache/
│   │   │       │               └── servicemix/
│   │   │       │                   └── examples/
│   │   │       │                       └── akka/
│   │   │       │                           ├── Application.scala
│   │   │       │                           ├── CamelBridge.scala
│   │   │       │                           ├── RouteBuilder.scala
│   │   │       │                           └── Stats.scala
│   │   │       └── test/
│   │   │           ├── resources/
│   │   │           │   ├── application.conf
│   │   │           │   ├── generate_test_data.rb
│   │   │           │   ├── log4j.properties
│   │   │           │   └── samples/
│   │   │           │       ├── file1.csv
│   │   │           │       ├── file2.csv
│   │   │           │       ├── file3.csv
│   │   │           │       ├── file4.csv
│   │   │           │       └── file5.csv
│   │   │           └── scala/
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── akka/
│   │   │                                   ├── RouteBuilderTest.scala
│   │   │                                   └── StatsTest.scala
│   │   └── pom.xml
│   ├── camel/
│   │   ├── camel-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── org.apache.servicemix.examples.cfg
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       └── MyTransform.java
│   │   │           └── resources/
│   │   │               └── OSGI-INF/
│   │   │                   └── blueprint/
│   │   │                       └── blueprint.xml
│   │   ├── camel-cxf-rest/
│   │   │   ├── README.txt
│   │   │   ├── camel-cxf-rest-client/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           └── java/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── camel/
│   │   │   │                                   └── rest/
│   │   │   │                                       └── client/
│   │   │   │                                           └── Client.java
│   │   │   ├── camel-cxf-rest-route/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── rest/
│   │   │   │           │                           └── PersonService.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-cxf-rest-service/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── rest/
│   │   │   │           │                           ├── ServiceHandler.java
│   │   │   │           │                           └── model/
│   │   │   │           │                               └── Person.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   └── pom.xml
│   │   ├── camel-cxf-soap/
│   │   │   ├── README.txt
│   │   │   ├── camel-cxf-soap-client/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           └── java/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── camel/
│   │   │   │                                   └── soap/
│   │   │   │                                       └── client/
│   │   │   │                                           └── Client.java
│   │   │   ├── camel-cxf-soap-route/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── soap/
│   │   │   │           │                           └── PersonService.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-cxf-soap-service/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── soap/
│   │   │   │           │                           ├── ServiceHandler.java
│   │   │   │           │                           └── model/
│   │   │   │           │                               ├── Person.java
│   │   │   │           │                               └── PersonException.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   └── pom.xml
│   │   ├── camel-drools/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       ├── Drinks.java
│   │   │           │                       ├── DroolsCommandHelper.java
│   │   │           │                       ├── Person.java
│   │   │           │                       ├── PersonHelper.java
│   │   │           │                       └── Sex.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── camel-context.xml
│   │   │               ├── log4j.properties
│   │   │               └── testSpring.drl
│   │   ├── camel-drools-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       ├── Drinks.java
│   │   │           │                       ├── DroolsBlueprintBean.java
│   │   │           │                       ├── DroolsCommandHelper.java
│   │   │           │                       ├── Person.java
│   │   │           │                       ├── PersonHelper.java
│   │   │           │                       └── Sex.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               ├── log4j.properties
│   │   │               └── testSpring.drl
│   │   ├── camel-osgi/
│   │   │   ├── README.txt
│   │   │   ├── org.apache.servicemix.examples.cfg
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── camel/
│   │   │           │                       ├── MyRouteBuilder.java
│   │   │           │                       └── MyTransform.java
│   │   │           └── resources/
│   │   │               └── META-INF/
│   │   │                   └── spring/
│   │   │                       └── beans.xml
│   │   ├── camel-sql/
│   │   │   ├── README.txt
│   │   │   ├── camel-sql-datasource-derby/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           └── DatabaseBeanDerby.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-sql-datasource-h2/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           └── DatabaseBeanH2.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-sql-datasource-pgsql/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           └── DatabaseBeanPgSQL.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── camel-sql-orders/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── camel/
│   │   │   │           │                       └── sql/
│   │   │   │           │                           ├── ListenerBean.java
│   │   │   │           │                           └── OrderBean.java
│   │   │   │           └── resources/
│   │   │   │               ├── OSGI-INF/
│   │   │   │               │   └── blueprint/
│   │   │   │               │       └── blueprint.xml
│   │   │   │               └── sql.properties
│   │   │   └── pom.xml
│   │   └── pom.xml
│   ├── cxf/
│   │   ├── cxf-jaxrs/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       └── jaxrs/
│   │   │           │                           ├── Customer.java
│   │   │           │                           ├── CustomerService.java
│   │   │           │                           ├── Order.java
│   │   │           │                           ├── Product.java
│   │   │           │                           └── client/
│   │   │           │                               └── Client.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── cxf/
│   │   │                                   └── jaxrs/
│   │   │                                       └── client/
│   │   │                                           ├── add_customer.xml
│   │   │                                           └── update_customer.xml
│   │   ├── cxf-jaxrs-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       └── jaxrs/
│   │   │           │                           ├── Customer.java
│   │   │           │                           ├── CustomerService.java
│   │   │           │                           ├── Order.java
│   │   │           │                           ├── Product.java
│   │   │           │                           └── client/
│   │   │           │                               └── Client.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── cxf/
│   │   │                                   └── jaxrs/
│   │   │                                       └── client/
│   │   │                                           ├── add_customer.xml
│   │   │                                           └── update_customer.xml
│   │   ├── cxf-jaxws-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               ├── examples/
│   │   │           │               │   └── cxf/
│   │   │           │               │       ├── EnableCORSInterceptor.java
│   │   │           │               │       ├── HelloWorld.java
│   │   │           │               │       └── HelloWorldImpl.java
│   │   │           │               └── samples/
│   │   │           │                   └── cxf_osgi/
│   │   │           │                       └── Client.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── samples/
│   │   │                               └── cxf_osgi/
│   │   │                                   └── request.xml
│   │   ├── cxf-osgi/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               ├── examples/
│   │   │           │               │   └── cxf/
│   │   │           │               │       ├── EnableCORSInterceptor.java
│   │   │           │               │       ├── HelloWorld.java
│   │   │           │               │       └── HelloWorldImpl.java
│   │   │           │               └── samples/
│   │   │           │                   └── cxf_osgi/
│   │   │           │                       └── Client.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── samples/
│   │   │                               └── cxf_osgi/
│   │   │                                   └── request.xml
│   │   ├── cxf-ws-addressing/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── EnableCORSInterceptor.java
│   │   │           │                       └── wsaddressing/
│   │   │           │                           ├── Client.java
│   │   │           │                           └── GreeterImpl.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               ├── org/
│   │   │               │   └── apache/
│   │   │               │       └── servicemix/
│   │   │               │           └── examples/
│   │   │               │               └── cxf/
│   │   │               │                   └── wsaddressing/
│   │   │               │                       └── request.xml
│   │   │               └── wsdl/
│   │   │                   └── hello_world_addr.wsdl
│   │   ├── cxf-ws-rm/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               ├── examples/
│   │   │           │               │   └── cxf/
│   │   │           │               │       ├── HelloWorld.java
│   │   │           │               │       └── HelloWorldImpl.java
│   │   │           │               └── samples/
│   │   │           │                   └── cxf_ws_rm/
│   │   │           │                       ├── Client.java
│   │   │           │                       └── MessageLossSimulator.java
│   │   │           └── resources/
│   │   │               ├── HelloWorld.wsdl
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── samples/
│   │   │                               └── cxf_ws_rm/
│   │   │                                   └── ws_rm.xml
│   │   ├── cxf-ws-security-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── Client.java
│   │   │           │                       ├── ClientPasswordCallback.java
│   │   │           │                       ├── CustomerSecurityInterceptor.java
│   │   │           │                       ├── EnableCORSInterceptor.java
│   │   │           │                       ├── HelloWorld.java
│   │   │           │                       └── HelloWorldImpl.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       └── blueprint.xml
│   │   │               └── log4j.properties
│   │   ├── cxf-ws-security-osgi/
│   │   │   ├── README.txt
│   │   │   ├── client.html
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── Client.java
│   │   │           │                       ├── ClientPasswordCallback.java
│   │   │           │                       ├── CustomerSecurityInterceptor.java
│   │   │           │                       ├── EnableCORSInterceptor.java
│   │   │           │                       ├── HelloWorld.java
│   │   │           │                       └── HelloWorldImpl.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               └── log4j.properties
│   │   ├── cxf-ws-security-signature/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── cxf/
│   │   │           │                       ├── Client.java
│   │   │           │                       ├── HelloWorld.java
│   │   │           │                       ├── HelloWorldImpl.java
│   │   │           │                       └── ServerPasswordCallback.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── beans.xml
│   │   │               ├── org/
│   │   │               │   └── apache/
│   │   │               │       └── servicemix/
│   │   │               │           └── examples/
│   │   │               │               └── cxf/
│   │   │               │                   └── request.xml
│   │   │               └── server-truststore.jks
│   │   ├── cxf-wsn/
│   │   │   ├── README.txt
│   │   │   ├── cxf-wsn-base/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── cxf/
│   │   │   │           │                       └── base/
│   │   │   │           │                           ├── Email.java
│   │   │   │           │                           └── package-info.java
│   │   │   │           └── resources/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── cxf/
│   │   │   │                                   └── base/
│   │   │   │                                       └── jaxb.index
│   │   │   ├── cxf-wsn-client/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           └── java/
│   │   │   │               └── org/
│   │   │   │                   └── apache/
│   │   │   │                       └── servicemix/
│   │   │   │                           └── examples/
│   │   │   │                               └── cxf/
│   │   │   │                                   └── client/
│   │   │   │                                       └── Client.java
│   │   │   ├── cxf-wsn-notifier/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── cxf/
│   │   │   │           │                       └── notifier/
│   │   │   │           │                           ├── Notifier.java
│   │   │   │           │                           └── SpamGenerator.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   ├── cxf-wsn-receive/
│   │   │   │   ├── pom.xml
│   │   │   │   └── src/
│   │   │   │       └── main/
│   │   │   │           ├── java/
│   │   │   │           │   └── org/
│   │   │   │           │       └── apache/
│   │   │   │           │           └── servicemix/
│   │   │   │           │               └── examples/
│   │   │   │           │                   └── cxf/
│   │   │   │           │                       └── receive/
│   │   │   │           │                           └── Subscriber.java
│   │   │   │           └── resources/
│   │   │   │               └── OSGI-INF/
│   │   │   │                   └── blueprint/
│   │   │   │                       └── blueprint.xml
│   │   │   └── pom.xml
│   │   └── pom.xml
│   ├── drools/
│   │   ├── drools-camel-blueprint/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── drools/
│   │   │           │                       └── camel/
│   │   │           │                           └── blueprint/
│   │   │           │                               ├── model/
│   │   │           │                               │   ├── Customer.java
│   │   │           │                               │   └── CustomerType.java
│   │   │           │                               └── osgi/
│   │   │           │                                   ├── DebugAgendaEventListener.java
│   │   │           │                                   ├── DebugRuleRuntimeEventListener.java
│   │   │           │                                   └── Utils.java
│   │   │           └── resources/
│   │   │               ├── OSGI-INF/
│   │   │               │   └── blueprint/
│   │   │               │       ├── camel-context.xml
│   │   │               │       └── kmodule-blueprint.xml
│   │   │               └── rule/
│   │   │                   └── customer-score.drl
│   │   ├── drools-camel-cxf-server/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── java/
│   │   │       │   │   └── org/
│   │   │       │   │       └── apache/
│   │   │       │   │           └── servicemix/
│   │   │       │   │               └── examples/
│   │   │       │   │                   └── drools/
│   │   │       │   │                       └── camel/
│   │   │       │   │                           └── cxf/
│   │   │       │   │                               └── server/
│   │   │       │   │                                   ├── model/
│   │   │       │   │                                   │   ├── Customer.java
│   │   │       │   │                                   │   └── CustomerType.java
│   │   │       │   │                                   └── osgi/
│   │   │       │   │                                       ├── CommandMessageBodyRW.java
│   │   │       │   │                                       ├── DebugAgendaEventListener.java
│   │   │       │   │                                       ├── DebugRuleRuntimeEventListener.java
│   │   │       │   │                                       └── Utils.java
│   │   │       │   └── resources/
│   │   │       │       ├── OSGI-INF/
│   │   │       │       │   └── blueprint/
│   │   │       │       │       ├── camel-client.xml
│   │   │       │       │       ├── camel-server.xml
│   │   │       │       │       └── kmodule-blueprint.xml
│   │   │       │       └── rule/
│   │   │       │           └── customer-score.drl
│   │   │       └── test/
│   │   │           └── resources/
│   │   │               ├── batch-test-request.xml
│   │   │               └── test-request.xml
│   │   ├── drools-simple/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       ├── main/
│   │   │       │   ├── java/
│   │   │       │   │   └── org/
│   │   │       │   │       └── apache/
│   │   │       │   │           └── servicemix/
│   │   │       │   │               └── examples/
│   │   │       │   │                   └── drools/
│   │   │       │   │                       └── simple/
│   │   │       │   │                           ├── model/
│   │   │       │   │                           │   ├── Customer.java
│   │   │       │   │                           │   └── CustomerType.java
│   │   │       │   │                           └── osgi/
│   │   │       │   │                               ├── SimpleRuleActivator.java
│   │   │       │   │                               └── Utils.java
│   │   │       │   └── resources/
│   │   │       │       ├── META-INF/
│   │   │       │       │   └── kmodule.xml
│   │   │       │       └── rule/
│   │   │       │           └── simple.drl
│   │   │       └── test/
│   │   │           └── java/
│   │   │               └── org/
│   │   │                   └── apache/
│   │   │                       └── servicemix/
│   │   │                           └── examples/
│   │   │                               └── drools/
│   │   │                                   └── test/
│   │   │                                       ├── ActivatorTest.java
│   │   │                                       └── SimpleTest.java
│   │   ├── drools-spring/
│   │   │   ├── README.txt
│   │   │   ├── pom.xml
│   │   │   └── src/
│   │   │       └── main/
│   │   │           ├── java/
│   │   │           │   └── org/
│   │   │           │       └── apache/
│   │   │           │           └── servicemix/
│   │   │           │               └── examples/
│   │   │           │                   └── drools/
│   │   │           │                       └── spring/
│   │   │           │                           ├── model/
│   │   │           │                           │   ├── Customer.java
│   │   │           │                           │   └── CustomerType.java
│   │   │           │                           └── osgi/
│   │   │           │                               ├── DebugAgendaEventListener.java
│   │   │           │                               ├── DebugRuleRuntimeEventListener.java
│   │   │           │                               ├── SimpleRuleBean.java
│   │   │           │                               └── Utils.java
│   │   │           └── resources/
│   │   │               ├── META-INF/
│   │   │               │   └── spring/
│   │   │               │       └── simple-spring.xml
│   │   │               └── rule/
│   │   │                   └── customer-score.drl
│   │   └── pom.xml
│   └── pom.xml
├── itests/
│   ├── pom.xml
│   └── src/
│       └── test/
│           ├── java/
│           │   └── org/
│           │       └── apache/
│           │           └── servicemix/
│           │               └── itests/
│           │                   ├── BasicDistroTest.java
│           │                   ├── ExamplesCXFTest.java
│           │                   ├── ExamplesCamelTest.java
│           │                   ├── ExamplesDrools6Test.java
│           │                   ├── ExamplesTest.java
│           │                   └── base/
│           │                       ├── Features.java
│           │                       ├── LogCollector.java
│           │                       └── ServiceMixDistroTest.java
│           └── resources/
│               └── log4j.properties
├── logging/
│   ├── jms-appender/
│   │   ├── README.txt
│   │   ├── pom.xml
│   │   └── src/
│   │       ├── main/
│   │       │   ├── java/
│   │       │   │   └── org/
│   │       │   │       └── apache/
│   │       │   │           └── servicemix/
│   │       │   │               └── logging/
│   │       │   │                   └── jms/
│   │       │   │                       ├── DefaultLoggingEventFormat.java
│   │       │   │                       ├── JMSAppender.java
│   │       │   │                       ├── LoggingEventFormat.java
│   │       │   │                       └── LogstashEventFormat.java
│   │       │   └── resources/
│   │       │       └── OSGI-INF/
│   │       │           └── blueprint/
│   │       │               └── config.xml
│   │       └── test/
│   │           ├── java/
│   │           │   └── org/
│   │           │       └── apache/
│   │           │           └── servicemix/
│   │           │               └── logging/
│   │           │                   └── jms/
│   │           │                       ├── JMSAppenderTest.java
│   │           │                       ├── LogstashEventFormatTest.java
│   │           │                       └── MockEvents.java
│   │           └── resources/
│   │               └── log4j.properties
│   └── pom.xml
├── manual/
│   ├── README.txt
│   ├── pom.xml
│   └── src/
│       └── main/
│           ├── asciidoc/
│           │   ├── activemq-guide/
│           │   │   ├── _activemq-camel-example.adoc
│           │   │   ├── _activemq-guide.adoc
│           │   │   ├── _introduction.adoc
│           │   │   └── activemq-guide.adoc
│           │   ├── activiti-guide/
│           │   │   ├── _activiti-camel-example.adoc
│           │   │   ├── _activiti-guide.adoc
│           │   │   ├── _introduction.adoc
│           │   │   └── activiti-guide.adoc
│           │   ├── camel-guide/
│           │   │   ├── _camel-guide.adoc
│           │   │   ├── _deployment.adoc
│           │   │   ├── _installing-components.adoc
│           │   │   ├── _introduction.adoc
│           │   │   ├── _osgi-bundle-blueprint.adoc
│           │   │   ├── _osgi-bundle-spring.adoc
│           │   │   ├── _plain-blueprint.adoc
│           │   │   ├── _plain-spring.adoc
│           │   │   ├── _troubleshooting.adoc
│           │   │   ├── camel-guide.adoc
│           │   │   ├── plain-blueprint-template.xml
│           │   │   ├── plain-blueprint.xml
│           │   │   ├── plain-spring-template.xml
│           │   │   └── plain-spring.xml
│           │   ├── contribute.adoc
│           │   ├── docinfo-footer.html
│           │   ├── docinfo.html
│           │   ├── documentation.adoc
│           │   ├── index.adoc
│           │   ├── quickstart/
│           │   │   ├── _activemq.adoc
│           │   │   ├── _camel.adoc
│           │   │   ├── _console.adoc
│           │   │   ├── _features.adoc
│           │   │   ├── _installation.adoc
│           │   │   ├── _introduction.adoc
│           │   │   ├── _quickstart.adoc
│           │   │   ├── _summary.adoc
│           │   │   └── quickstart.adoc
│           │   ├── resources/
│           │   │   ├── _resources.adoc
│           │   │   └── resources.adoc
│           │   └── user-guide/
│           │       ├── _introduction.adoc
│           │       ├── _technology-selection.adoc
│           │       ├── _user-guide.adoc
│           │       ├── _what-is-servicemix.adoc
│           │       └── user-guide.adoc
│           └── groovy/
│               └── CreateKarafCommandsAdocFile.groovy
├── parent/
│   ├── assemblies-parent/
│   │   └── pom.xml
│   ├── features-parent/
│   │   └── pom.xml
│   └── pom.xml
├── pom.xml
└── tooling/
    ├── archetypes/
    │   ├── pom.xml
    │   ├── servicemix-cxf-code-first-osgi-bundle/
    │   │   ├── pom.xml
    │   │   └── src/
    │   │       └── main/
    │   │           └── resources/
    │   │               ├── META-INF/
    │   │               │   └── maven/
    │   │               │       └── archetype.xml
    │   │               └── archetype-resources/
    │   │                   ├── pom.xml
    │   │                   └── src/
    │   │                       └── main/
    │   │                           ├── java/
    │   │                           │   ├── Person.java
    │   │                           │   ├── PersonImpl.java
    │   │                           │   ├── UnknownPersonFault.java
    │   │                           │   ├── client/
    │   │                           │   │   └── Client.java
    │   │                           │   └── types/
    │   │                           │       ├── GetPerson.java
    │   │                           │       ├── GetPersonResponse.java
    │   │                           │       ├── ObjectFactory.java
    │   │                           │       ├── UnknownPersonFault.java
    │   │                           │       └── package-info.java
    │   │                           └── resources/
    │   │                               └── META-INF/
    │   │                                   └── spring/
    │   │                                       └── beans.xml
    │   ├── servicemix-cxf-wsdl-first-osgi-bundle/
    │   │   ├── pom.xml
    │   │   └── src/
    │   │       └── main/
    │   │           └── resources/
    │   │               ├── META-INF/
    │   │               │   └── maven/
    │   │               │       └── archetype.xml
    │   │               └── archetype-resources/
    │   │                   ├── pom.xml
    │   │                   └── src/
    │   │                       └── main/
    │   │                           ├── java/
    │   │                           │   └── PersonImpl.java
    │   │                           └── resources/
    │   │                               ├── META-INF/
    │   │                               │   └── spring/
    │   │                               │       └── beans.xml
    │   │                               └── wsdl/
    │   │                                   └── person.wsdl
    │   └── servicemix-osgi-bundle/
    │       ├── pom.xml
    │       └── src/
    │           └── main/
    │               └── resources/
    │                   ├── META-INF/
    │                   │   └── maven/
    │                   │       └── archetype.xml
    │                   └── archetype-resources/
    │                       └── pom.xml
    └── pom.xml
Download .txt
SYMBOL INDEX (576 symbols across 127 files)

FILE: activemq/activemq-camel/src/main/java/org/apache/servicemix/activemq/camel/ActiveMQComponent.java
  class ActiveMQComponent (line 29) | public class ActiveMQComponent extends org.apache.activemq.camel.compone...
    method ActiveMQComponent (line 33) | public ActiveMQComponent(CamelContext camelContext, ConnectionFactory ...

FILE: activemq/activemq-camel/src/main/java/org/apache/servicemix/activemq/camel/ActiveMQComponentResolver.java
  class ActiveMQComponentResolver (line 30) | public class ActiveMQComponentResolver implements ComponentResolver {
    method resolveComponent (line 36) | public Component resolveComponent(String name, CamelContext camelContext)
    method getConnectionFactory (line 46) | public ConnectionFactory getConnectionFactory() {
    method setConnectionFactory (line 50) | public void setConnectionFactory(ConnectionFactory connectionFactory) {

FILE: activiti/activiti-config/src/main/java/org/apache/servicemix/activiti/config/CamelAwareELResolver.java
  class CamelAwareELResolver (line 33) | public class CamelAwareELResolver extends BlueprintELResolver {
    method getValue (line 39) | @Override
    method addContextProvider (line 56) | public void addContextProvider(ContextProvider provider) {
    method removeContextProvider (line 65) | public void removeContextProvider(ContextProvider provider) {
    method getCamelBehaviour (line 74) | protected CamelBehaviour getCamelBehaviour() {

FILE: activiti/activiti-config/src/test/java/org/apache/servicemix/activiti/config/CamelAwareELResolverTest.java
  class CamelAwareELResolverTest (line 29) | public class CamelAwareELResolverTest {
    method testGetValue (line 33) | @Test
    method expectELContextResolved (line 45) | private ELContext expectELContextResolved() {

FILE: examples/activemq/activemq-camel-blueprint/src/main/java/org/apache/servicemix/examples/activemq/MyTransform.java
  class MyTransform (line 22) | public class MyTransform  {
    method transform (line 28) | public Object transform(Object body) {
    method isVerbose (line 37) | public boolean isVerbose() {
    method setVerbose (line 41) | public void setVerbose(boolean verbose) {
    method getPrefix (line 45) | public String getPrefix() {
    method setPrefix (line 49) | public void setPrefix(String prefix) {

FILE: examples/activiti/activiti-camel/src/main/java/org/apache/servicemix/examples/activiti/ActivitiRouteBuilder.java
  class ActivitiRouteBuilder (line 35) | public class ActivitiRouteBuilder extends RouteBuilder {
    method configure (line 39) | @Override
    class Helper (line 79) | public static final class Helper {
      method getProcessVariables (line 85) | @Handler

FILE: examples/camel/camel-blueprint/src/main/java/org/apache/servicemix/examples/camel/MyTransform.java
  class MyTransform (line 22) | public class MyTransform  {
    method transform (line 28) | public Object transform(Object body) {
    method isVerbose (line 37) | public boolean isVerbose() {
    method setVerbose (line 41) | public void setVerbose(boolean verbose) {
    method getPrefix (line 45) | public String getPrefix() {
    method setPrefix (line 49) | public void setPrefix(String prefix) {

FILE: examples/camel/camel-cxf-rest/camel-cxf-rest-client/src/main/java/org/apache/servicemix/examples/camel/rest/client/Client.java
  class Client (line 30) | public class Client {
    method main (line 33) | public static void main(String[] args) {
    method postPerson (line 44) | public void postPerson(Person person) throws Exception{
    method getPerson (line 65) | public void getPerson(int id) throws Exception{
    method deletePerson (line 77) | public void deletePerson(int id) throws Exception{
    method connect (line 90) | private HttpURLConnection connect(String url) throws Exception{

FILE: examples/camel/camel-cxf-rest/camel-cxf-rest-route/src/main/java/org/apache/servicemix/examples/camel/rest/PersonService.java
  class PersonService (line 27) | @Path("/personservice/")
    method getPerson (line 30) | @GET
    method putPerson (line 37) | @POST
    method deletePerson (line 43) | @DELETE

FILE: examples/camel/camel-cxf-rest/camel-cxf-rest-service/src/main/java/org/apache/servicemix/examples/camel/rest/ServiceHandler.java
  class ServiceHandler (line 31) | public class ServiceHandler {
    method init (line 35) | public void init(){
    method add (line 39) | private Response add(Person person){
    method get (line 46) | private Person get(int id){
    method delete (line 57) | private void delete(int id){
    method getPerson (line 65) | public Person getPerson(String id){
    method putPerson (line 69) | public Response putPerson(Person person){
    method deletePerson (line 73) | public void deletePerson(int id){

FILE: examples/camel/camel-cxf-rest/camel-cxf-rest-service/src/main/java/org/apache/servicemix/examples/camel/rest/model/Person.java
  class Person (line 23) | @XmlRootElement
    method Person (line 29) | public Person(int id, String name, int age) {
    method Person (line 35) | public Person() {
    method getAge (line 38) | public int getAge() {
    method setAge (line 42) | public void setAge(int age) {
    method getName (line 46) | public String getName() {
    method setName (line 50) | public void setName(String name) {
    method getId (line 54) | public int getId() {
    method setId (line 58) | public void setId(int id) {
    method equals (line 62) | @Override

FILE: examples/camel/camel-cxf-soap/camel-cxf-soap-client/src/main/java/org/apache/servicemix/examples/camel/soap/client/Client.java
  class Client (line 32) | public class Client {
    method main (line 36) | public static void main(String[] args) throws MalformedURLException {
    method Client (line 54) | public Client() throws MalformedURLException {
    method postPerson (line 60) | public void postPerson(Person person) throws Exception{
    method getPerson (line 70) | public void getPerson(int id) throws Exception{
    method deletePerson (line 78) | public void deletePerson(int id) throws Exception{
    method printPerson (line 89) | private void printPerson(Person person){

FILE: examples/camel/camel-cxf-soap/camel-cxf-soap-route/src/main/java/org/apache/servicemix/examples/camel/soap/PersonService.java
  type PersonService (line 26) | @WebService(serviceName = "PersonService")
    method getPerson (line 28) | Person getPerson(@WebParam(name="id")int id) throws PersonException;
    method putPerson (line 30) | Person putPerson(Person person);
    method deletePerson (line 32) | Person deletePerson(@WebParam(name="id")int id) throws PersonException;

FILE: examples/camel/camel-cxf-soap/camel-cxf-soap-service/src/main/java/org/apache/servicemix/examples/camel/soap/ServiceHandler.java
  class ServiceHandler (line 28) | public class ServiceHandler {
    method init (line 34) | public void init(){
    method getPerson (line 39) | public void getPerson(@Body String id,Exchange exchange){
    method putPerson (line 44) | public Person putPerson(Person person){
    method deletePerson (line 49) | public void deletePerson(@Body String id,Exchange exchange){
    method checkResult (line 55) | private void checkResult(String id, Exchange exchange, Person result) {

FILE: examples/camel/camel-cxf-soap/camel-cxf-soap-service/src/main/java/org/apache/servicemix/examples/camel/soap/model/Person.java
  class Person (line 23) | @XmlRootElement
    method Person (line 29) | public Person(int id, String name, int age) {
    method Person (line 35) | public Person() {
    method getAge (line 38) | public int getAge() {
    method setAge (line 42) | public void setAge(int age) {
    method getName (line 46) | public String getName() {
    method setName (line 50) | public void setName(String name) {
    method getId (line 54) | public int getId() {
    method setId (line 58) | public void setId(int id) {
    method equals (line 62) | @Override

FILE: examples/camel/camel-cxf-soap/camel-cxf-soap-service/src/main/java/org/apache/servicemix/examples/camel/soap/model/PersonException.java
  class PersonException (line 24) | @WebFault(name="PersonException")
    method PersonException (line 28) | public PersonException(String message, String personId){
    method getPersonid (line 33) | public String getPersonid(){

FILE: examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/Drinks.java
  type Drinks (line 19) | public enum Drinks {
    method Drinks (line 30) | private Drinks(String description) {
    method getDescription (line 34) | public String getDescription() {

FILE: examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/DroolsBlueprintBean.java
  class DroolsBlueprintBean (line 36) | public class DroolsBlueprintBean {
    method createGridNode (line 39) | public static GridNode createGridNode(String id){
    method createKnowledgeBase (line 44) | public static KnowledgeBase createKnowledgeBase(GridNode node,String r...
    method createKnowledgeSession (line 71) | public static CommandExecutor createKnowledgeSession(KnowledgeBase kba...
    method parseResource (line 89) | private static Resource parseResource(String resource) {

FILE: examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/DroolsCommandHelper.java
  class DroolsCommandHelper (line 33) | public class DroolsCommandHelper {
    method insertAndFireAll (line 34) | public void insertAndFireAll(Exchange exchange) {

FILE: examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/Person.java
  class Person (line 21) | @PropertyReactive
    method getAge (line 30) | public int getAge() {
    method setAge (line 34) | public void setAge(int age) {
    method getIncome (line 38) | public int getIncome() {
    method setIncome (line 42) | public void setIncome(int income) {
    method getSex (line 46) | public Sex getSex() {
    method setSex (line 50) | public void setSex(Sex sex) {
    method isCanDrink (line 54) | public boolean isCanDrink() {
    method setCanDrink (line 58) | public void setCanDrink(boolean canDrink) {
    method isVip (line 62) | public boolean isVip() {
    method setVip (line 66) | public void setVip(boolean vip) {
    method getDrink (line 70) | public Drinks getDrink() {
    method setDrink (line 74) | public void setDrink(Drinks drink) {
    method isRich (line 78) | public boolean isRich(){
    method getName (line 82) | public String getName() {
    method toString (line 107) | @Override

FILE: examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/PersonHelper.java
  class PersonHelper (line 22) | public class PersonHelper {
    method createTestPerson (line 25) | public Person createTestPerson() {

FILE: examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/Sex.java
  type Sex (line 20) | public enum Sex {

FILE: examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/Drinks.java
  type Drinks (line 19) | public enum Drinks {
    method Drinks (line 30) | private Drinks(String description) {
    method getDescription (line 34) | public String getDescription() {

FILE: examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/DroolsCommandHelper.java
  class DroolsCommandHelper (line 33) | public class DroolsCommandHelper {
    method insertAndFireAll (line 34) | public void insertAndFireAll(Exchange exchange) {

FILE: examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/Person.java
  class Person (line 24) | @PropertyReactive
    method getAge (line 33) | public int getAge() {
    method setAge (line 37) | public void setAge(int age) {
    method getIncome (line 41) | public int getIncome() {
    method setIncome (line 45) | public void setIncome(int income) {
    method getSex (line 49) | public Sex getSex() {
    method setSex (line 53) | public void setSex(Sex sex) {
    method isCanDrink (line 57) | public boolean isCanDrink() {
    method setCanDrink (line 61) | public void setCanDrink(boolean canDrink) {
    method isVip (line 65) | public boolean isVip() {
    method setVip (line 69) | public void setVip(boolean vip) {
    method getDrink (line 73) | public Drinks getDrink() {
    method setDrink (line 77) | public void setDrink(Drinks drink) {
    method isRich (line 81) | public boolean isRich(){
    method getName (line 85) | public String getName() {
    method toString (line 110) | @Override

FILE: examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/PersonHelper.java
  class PersonHelper (line 22) | public class PersonHelper {
    method createTestPerson (line 25) | public Person createTestPerson() {

FILE: examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/Sex.java
  type Sex (line 20) | public enum Sex {

FILE: examples/camel/camel-osgi/src/main/java/org/apache/servicemix/examples/camel/MyRouteBuilder.java
  class MyRouteBuilder (line 27) | public class MyRouteBuilder extends RouteBuilder {
    method main (line 33) | public static void main(String[] args) throws Exception{
    method configure (line 37) | public void configure() {

FILE: examples/camel/camel-osgi/src/main/java/org/apache/servicemix/examples/camel/MyTransform.java
  class MyTransform (line 27) | public class MyTransform  {
    method transform (line 34) | public Object transform(Object body) {
    method isVerbose (line 43) | public boolean isVerbose() {
    method setVerbose (line 47) | public void setVerbose(boolean verbose) {
    method getPrefix (line 51) | public String getPrefix() {
    method setPrefix (line 55) | public void setPrefix(String prefix) {

FILE: examples/camel/camel-sql/camel-sql-datasource-derby/src/main/java/org/apache/servicemix/examples/camel/sql/DatabaseBeanDerby.java
  class DatabaseBeanDerby (line 25) | public class DatabaseBeanDerby {
    method DatabaseBeanDerby (line 30) | public DatabaseBeanDerby(){}
    method setDataSource (line 32) | public void setDataSource(DataSource dataSource) {
    method create (line 36) | public void create() throws SQLException{
    method destroy (line 45) | public void destroy() throws SQLException {

FILE: examples/camel/camel-sql/camel-sql-datasource-h2/src/main/java/org/apache/servicemix/examples/camel/sql/DatabaseBeanH2.java
  class DatabaseBeanH2 (line 26) | public class DatabaseBeanH2 {
    method DatabaseBeanH2 (line 31) | public DatabaseBeanH2(){}
    method setDataSource (line 33) | public void setDataSource(DataSource dataSource) {
    method create (line 37) | public void create() throws SQLException{
    method destroy (line 45) | public void destroy() throws SQLException {

FILE: examples/camel/camel-sql/camel-sql-datasource-pgsql/src/main/java/org/apache/servicemix/examples/camel/sql/DatabaseBeanPgSQL.java
  class DatabaseBeanPgSQL (line 26) | public class DatabaseBeanPgSQL {
    method DatabaseBeanPgSQL (line 30) | public DatabaseBeanPgSQL(){}
    method setDataSource (line 32) | public void setDataSource(DataSource dataSource) {
    method create (line 36) | public void create() throws SQLException {
    method destroy (line 45) | public void destroy() throws SQLException {

FILE: examples/camel/camel-sql/camel-sql-orders/src/main/java/org/apache/servicemix/examples/camel/sql/ListenerBean.java
  class ListenerBean (line 23) | public class ListenerBean {
    method onBind (line 26) | public void onBind(Object service, Map properties){
    method onUnbind (line 31) | public void onUnbind(Object service, Map properties){

FILE: examples/camel/camel-sql/camel-sql-orders/src/main/java/org/apache/servicemix/examples/camel/sql/OrderBean.java
  class OrderBean (line 21) | public class OrderBean {
    method OrderBean (line 28) | public OrderBean() {
    method generateRandomOrder (line 33) | public Map<String,Object> generateRandomOrder(){
    method getNextItemNumber (line 37) | private static int getNextItemNumber(){
    method processOrder (line 41) | public void processOrder(Map<String,Object> order){
    method init (line 48) | public void init(){
    method createOrder (line 56) | private Map<String,Object> createOrder(String item, String description...

FILE: examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Customer.java
  class Customer (line 23) | @XmlRootElement(name = "Customer")
    method getId (line 28) | public long getId() {
    method setId (line 32) | public void setId(long id) {
    method getName (line 36) | public String getName() {
    method setName (line 40) | public void setName(String name) {

FILE: examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/CustomerService.java
  class CustomerService (line 47) | @Path("/customerservice")
    method CustomerService (line 56) | public CustomerService() {
    method getCustomer (line 69) | @GET
    method updateCustomer (line 95) | @PUT
    method addCustomer (line 130) | @POST
    method deleteCustomer (line 151) | @DELETE
    method getOrder (line 184) | @Path("/orders/{orderId}/")
    method init (line 196) | final void init() {

FILE: examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Order.java
  class Order (line 30) | @XmlRootElement(name = "Order")
    method Order (line 36) | public Order() {
    method getId (line 40) | public long getId() {
    method setId (line 44) | public void setId(long id) {
    method getDescription (line 48) | public String getDescription() {
    method setDescription (line 52) | public void setDescription(String d) {
    method getProduct (line 56) | @GET
    method init (line 65) | final void init() {

FILE: examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Product.java
  class Product (line 23) | @XmlRootElement(name = "Product")
    method getId (line 28) | public long getId() {
    method setId (line 32) | public void setId(long id) {
    method getDescription (line 36) | public String getDescription() {
    method setDescription (line 40) | public void setDescription(String d) {

FILE: examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/client/Client.java
  class Client (line 32) | public final class Client {
    method Client (line 34) | private Client() {
    method main (line 37) | public static void main(String args[]) throws Exception {
    method getStringFromInputStream (line 101) | private static String getStringFromInputStream(InputStream in) throws ...

FILE: examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Customer.java
  class Customer (line 23) | @XmlRootElement(name = "Customer")
    method getId (line 28) | public long getId() {
    method setId (line 32) | public void setId(long id) {
    method getName (line 36) | public String getName() {
    method setName (line 40) | public void setName(String name) {

FILE: examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/CustomerService.java
  class CustomerService (line 33) | @Path("/customerservice/")
    method CustomerService (line 39) | public CustomerService() {
    method getCustomer (line 43) | @GET
    method updateCustomer (line 53) | @PUT
    method addCustomer (line 69) | @POST
    method deleteCustomer (line 80) | @DELETE
    method getOrder (line 98) | @Path("/orders/{orderId}/")
    method init (line 106) | final void init() {

FILE: examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Order.java
  class Order (line 30) | @XmlRootElement(name = "Order")
    method Order (line 36) | public Order() {
    method getId (line 40) | public long getId() {
    method setId (line 44) | public void setId(long id) {
    method getDescription (line 48) | public String getDescription() {
    method setDescription (line 52) | public void setDescription(String d) {
    method getProduct (line 56) | @GET
    method init (line 65) | final void init() {

FILE: examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Product.java
  class Product (line 23) | @XmlRootElement(name = "Product")
    method getId (line 28) | public long getId() {
    method setId (line 32) | public void setId(long id) {
    method getDescription (line 36) | public String getDescription() {
    method setDescription (line 40) | public void setDescription(String d) {

FILE: examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/client/Client.java
  class Client (line 32) | public final class Client {
    method Client (line 34) | private Client() {
    method main (line 37) | public static void main(String args[]) throws Exception {
    method getStringFromInputStream (line 101) | private static String getStringFromInputStream(InputStream in) throws ...

FILE: examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/examples/cxf/EnableCORSInterceptor.java
  class EnableCORSInterceptor (line 31) | public class EnableCORSInterceptor extends AbstractPhaseInterceptor<Mess...
    method EnableCORSInterceptor (line 33) | public EnableCORSInterceptor() {
    method handleMessage (line 37) | @Override

FILE: examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java
  type HelloWorld (line 24) | @WebService
    method sayHi (line 26) | String sayHi(String text);

FILE: examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java
  class HelloWorldImpl (line 24) | @WebService(endpointInterface = "org.apache.servicemix.examples.cxf.Hell...
    method sayHi (line 27) | public String sayHi(String text) {

FILE: examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/samples/cxf_osgi/Client.java
  class Client (line 27) | public class Client{
    method main (line 28) | public static void main(String[] args) {
    method sendRequest (line 36) | public void sendRequest() throws Exception {

FILE: examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/examples/cxf/EnableCORSInterceptor.java
  class EnableCORSInterceptor (line 31) | public class EnableCORSInterceptor extends AbstractPhaseInterceptor<Mess...
    method EnableCORSInterceptor (line 33) | public EnableCORSInterceptor() {
    method handleMessage (line 37) | @Override

FILE: examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java
  type HelloWorld (line 24) | @WebService
    method sayHi (line 26) | String sayHi(String text);

FILE: examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java
  class HelloWorldImpl (line 24) | @WebService(endpointInterface = "org.apache.servicemix.examples.cxf.Hell...
    method sayHi (line 27) | public String sayHi(String text) {

FILE: examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/samples/cxf_osgi/Client.java
  class Client (line 30) | public class Client{
    method main (line 31) | public static void main(String[] args) {
    method sendRequest (line 39) | public void sendRequest() throws Exception {

FILE: examples/cxf/cxf-ws-addressing/src/main/java/org/apache/servicemix/examples/cxf/EnableCORSInterceptor.java
  class EnableCORSInterceptor (line 31) | public class EnableCORSInterceptor extends AbstractPhaseInterceptor<Mess...
    method EnableCORSInterceptor (line 33) | public EnableCORSInterceptor() {
    method handleMessage (line 37) | @Override

FILE: examples/cxf/cxf-ws-addressing/src/main/java/org/apache/servicemix/examples/cxf/wsaddressing/Client.java
  class Client (line 28) | public class Client{
    method main (line 29) | public static void main(String[] args) {
    method sendRequest (line 37) | public void sendRequest() throws Exception {

FILE: examples/cxf/cxf-ws-addressing/src/main/java/org/apache/servicemix/examples/cxf/wsaddressing/GreeterImpl.java
  class GreeterImpl (line 30) | @WebService(name = "SoapPort",
    method greetMe (line 44) | public String greetMe(String me) {
    method greetMeOneWay (line 54) | public void greetMeOneWay(String me) {
    method sayHi (line 63) | public String sayHi() {
    method pingMe (line 69) | public void pingMe() throws PingMeFault {

FILE: examples/cxf/cxf-ws-rm/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java
  type HelloWorld (line 24) | @WebService
    method sayHi (line 26) | String sayHi(String text);

FILE: examples/cxf/cxf-ws-rm/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java
  class HelloWorldImpl (line 24) | @WebService(endpointInterface = "org.apache.servicemix.examples.cxf.Hell...
    method sayHi (line 27) | public String sayHi(String text) {

FILE: examples/cxf/cxf-ws-rm/src/main/java/org/apache/servicemix/samples/cxf_ws_rm/Client.java
  class Client (line 32) | public final class Client {
    method Client (line 41) | private Client() {
    method main (line 44) | public static void main(String args[]) throws Exception {

FILE: examples/cxf/cxf-ws-rm/src/main/java/org/apache/servicemix/samples/cxf_ws_rm/MessageLossSimulator.java
  class MessageLossSimulator (line 43) | public class MessageLossSimulator extends AbstractPhaseInterceptor<Messa...
    method MessageLossSimulator (line 48) | public MessageLossSimulator() {
    method handleMessage (line 54) | public void handleMessage(Message message) throws Fault {
    class WrappedOutputStream (line 97) | private class WrappedOutputStream extends AbstractWrappedOutputStream {
      method WrappedOutputStream (line 101) | public WrappedOutputStream(Message m) {
      method onFirstWrite (line 105) | @Override
    class DummyOutputStream (line 118) | private class DummyOutputStream extends OutputStream {
      method write (line 120) | @Override

FILE: examples/cxf/cxf-ws-security-blueprint/src/main/java/org/apache/servicemix/examples/cxf/Client.java
  class Client (line 28) | public class Client{
    method main (line 29) | public static void main(String[] args) {
    method sendRequest (line 37) | public void sendRequest() throws Exception {

FILE: examples/cxf/cxf-ws-security-blueprint/src/main/java/org/apache/servicemix/examples/cxf/ClientPasswordCallback.java
  class ClientPasswordCallback (line 29) | public class ClientPasswordCallback implements CallbackHandler {
    method handle (line 31) | public void handle(Callback[] callbacks) throws IOException, Unsupport...

FILE: examples/cxf/cxf-ws-security-blueprint/src/main/java/org/apache/servicemix/examples/cxf/CustomerSecurityInterceptor.java
  class CustomerSecurityInterceptor (line 32) | public class CustomerSecurityInterceptor extends AbstractPhaseIntercepto...
    method CustomerSecurityInterceptor (line 34) | public CustomerSecurityInterceptor() {
    method handleMessage (line 38) | public void handleMessage(Message message) throws Fault {

FILE: examples/cxf/cxf-ws-security-blueprint/src/main/java/org/apache/servicemix/examples/cxf/EnableCORSInterceptor.java
  class EnableCORSInterceptor (line 31) | public class EnableCORSInterceptor extends AbstractPhaseInterceptor<Mess...
    method EnableCORSInterceptor (line 33) | public EnableCORSInterceptor() {
    method handleMessage (line 37) | @Override

FILE: examples/cxf/cxf-ws-security-blueprint/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java
  type HelloWorld (line 24) | @WebService
    method sayHi (line 26) | String sayHi(String text);

FILE: examples/cxf/cxf-ws-security-blueprint/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java
  class HelloWorldImpl (line 24) | @WebService(endpointInterface = "org.apache.servicemix.examples.cxf.Hell...
    method sayHi (line 27) | public String sayHi(String text) {

FILE: examples/cxf/cxf-ws-security-osgi/src/main/java/org/apache/servicemix/examples/cxf/Client.java
  class Client (line 28) | public class Client{
    method main (line 29) | public static void main(String[] args) {
    method sendRequest (line 37) | public void sendRequest() throws Exception {

FILE: examples/cxf/cxf-ws-security-osgi/src/main/java/org/apache/servicemix/examples/cxf/ClientPasswordCallback.java
  class ClientPasswordCallback (line 30) | public class ClientPasswordCallback implements CallbackHandler {
    method handle (line 32) | public void handle(Callback[] callbacks) throws IOException, Unsupport...

FILE: examples/cxf/cxf-ws-security-osgi/src/main/java/org/apache/servicemix/examples/cxf/CustomerSecurityInterceptor.java
  class CustomerSecurityInterceptor (line 32) | public class CustomerSecurityInterceptor extends AbstractPhaseIntercepto...
    method CustomerSecurityInterceptor (line 34) | public CustomerSecurityInterceptor() {
    method handleMessage (line 38) | public void handleMessage(Message message) throws Fault {

FILE: examples/cxf/cxf-ws-security-osgi/src/main/java/org/apache/servicemix/examples/cxf/EnableCORSInterceptor.java
  class EnableCORSInterceptor (line 31) | public class EnableCORSInterceptor extends AbstractPhaseInterceptor<Mess...
    method EnableCORSInterceptor (line 33) | public EnableCORSInterceptor() {
    method handleMessage (line 37) | @Override

FILE: examples/cxf/cxf-ws-security-osgi/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java
  type HelloWorld (line 24) | @WebService
    method sayHi (line 26) | String sayHi(String text);

FILE: examples/cxf/cxf-ws-security-osgi/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java
  class HelloWorldImpl (line 24) | @WebService(endpointInterface = "org.apache.servicemix.examples.cxf.Hell...
    method sayHi (line 27) | public String sayHi(String text) {

FILE: examples/cxf/cxf-ws-security-signature/src/main/java/org/apache/servicemix/examples/cxf/Client.java
  class Client (line 28) | public class Client{
    method main (line 29) | public static void main(String[] args) {
    method sendRequest (line 37) | public void sendRequest() throws Exception {

FILE: examples/cxf/cxf-ws-security-signature/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java
  type HelloWorld (line 24) | @WebService(name = "HelloWorld", targetNamespace = "http://cxf.apache.or...
    method sayHello (line 26) | @WebMethod

FILE: examples/cxf/cxf-ws-security-signature/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java
  class HelloWorldImpl (line 25) | @WebService(name = "HelloWorld", targetNamespace = "http://cxf.apache.or...
    method sayHello (line 28) | @WebMethod

FILE: examples/cxf/cxf-ws-security-signature/src/main/java/org/apache/servicemix/examples/cxf/ServerPasswordCallback.java
  class ServerPasswordCallback (line 30) | public class ServerPasswordCallback implements CallbackHandler {
    method handle (line 32) | public void handle(Callback[] callbacks) throws IOException, Unsupport...

FILE: examples/cxf/cxf-wsn/cxf-wsn-base/src/main/java/org/apache/servicemix/examples/cxf/base/Email.java
  class Email (line 21) | @XmlRootElement(name ="email", namespace = "urn:org.apache.servicemix:wsn")
    method Email (line 25) | public Email() {
    method Email (line 28) | public Email(String from, String to, String subject, String body) {
    method getFrom (line 35) | public String getFrom() {
    method setFrom (line 39) | public void setFrom(String from) {
    method getTo (line 43) | public String getTo() {
    method setTo (line 47) | public void setTo(String to) {
    method getSubject (line 51) | public String getSubject() {
    method setSubject (line 55) | public void setSubject(String subject) {
    method getBody (line 59) | public String getBody() {
    method setBody (line 63) | public void setBody(String body) {
    method toString (line 67) | @Override

FILE: examples/cxf/cxf-wsn/cxf-wsn-client/src/main/java/org/apache/servicemix/examples/cxf/client/Client.java
  class Client (line 26) | public final class Client {
    method Client (line 27) | private Client() {
    method main (line 34) | public static void main(String[] args) throws Exception {

FILE: examples/cxf/cxf-wsn/cxf-wsn-notifier/src/main/java/org/apache/servicemix/examples/cxf/notifier/Notifier.java
  class Notifier (line 23) | public class Notifier {
    method setTopic (line 29) | public void setTopic(String topic) {
    method setNotificationBroker (line 33) | public void setNotificationBroker(ServiceReference reference) {
    method emailNotify (line 37) | public void emailNotify(Email email){

FILE: examples/cxf/cxf-wsn/cxf-wsn-notifier/src/main/java/org/apache/servicemix/examples/cxf/notifier/SpamGenerator.java
  class SpamGenerator (line 23) | public class SpamGenerator {
    method init (line 28) | public void init(){
    method spamMessage (line 37) | public Email spamMessage(){

FILE: examples/cxf/cxf-wsn/cxf-wsn-receive/src/main/java/org/apache/servicemix/examples/cxf/receive/Subscriber.java
  class Subscriber (line 25) | public class Subscriber {
    method Subscriber (line 33) | public Subscriber() {
    method setEndPoint (line 36) | public void setEndPoint(String endPoint) {
    method setNotificationBroker (line 40) | public void setNotificationBroker(ServiceReference reference) {
    method setTopic (line 44) | public void setTopic(String topic) {
    method init (line 48) | public void init() throws Exception {
    method destroy (line 52) | public void destroy() throws Exception {

FILE: examples/drools/drools-camel-blueprint/src/main/java/org/apache/servicemix/examples/drools/camel/blueprint/model/Customer.java
  class Customer (line 19) | public class Customer {
    method Customer (line 36) | public Customer(int salary) {
    method getSalary (line 43) | public int getSalary() {
    method getType (line 50) | public CustomerType getType() {
    method setSalary (line 57) | public void setSalary(int salary) {
    method setType (line 64) | public void setType(CustomerType type) {
    method toString (line 71) | @Override

FILE: examples/drools/drools-camel-blueprint/src/main/java/org/apache/servicemix/examples/drools/camel/blueprint/model/CustomerType.java
  type CustomerType (line 20) | public enum CustomerType {

FILE: examples/drools/drools-camel-blueprint/src/main/java/org/apache/servicemix/examples/drools/camel/blueprint/osgi/DebugAgendaEventListener.java
  class DebugAgendaEventListener (line 34) | public class DebugAgendaEventListener implements AgendaEventListener {
    method matchCreated (line 44) | @Override
    method matchCancelled (line 53) | @Override
    method beforeMatchFired (line 62) | @Override
    method afterMatchFired (line 71) | @Override
    method agendaGroupPopped (line 80) | @Override
    method agendaGroupPushed (line 89) | @Override
    method beforeRuleFlowGroupActivated (line 98) | @Override
    method afterRuleFlowGroupActivated (line 107) | @Override
    method beforeRuleFlowGroupDeactivated (line 116) | @Override
    method afterRuleFlowGroupDeactivated (line 126) | @Override

FILE: examples/drools/drools-camel-blueprint/src/main/java/org/apache/servicemix/examples/drools/camel/blueprint/osgi/DebugRuleRuntimeEventListener.java
  class DebugRuleRuntimeEventListener (line 29) | public class DebugRuleRuntimeEventListener implements RuleRuntimeEventLi...
    method objectInserted (line 39) | @Override
    method objectUpdated (line 47) | @Override
    method objectDeleted (line 56) | @Override

FILE: examples/drools/drools-camel-blueprint/src/main/java/org/apache/servicemix/examples/drools/camel/blueprint/osgi/Utils.java
  class Utils (line 31) | public class Utils {
    method customer (line 35) | public Customer customer() {
    method insertAndFireAll (line 40) | public void insertAndFireAll(Exchange exchange) {

FILE: examples/drools/drools-camel-cxf-server/src/main/java/org/apache/servicemix/examples/drools/camel/cxf/server/model/Customer.java
  class Customer (line 19) | public class Customer {
    method Customer (line 36) | public Customer(int salary) {
    method getSalary (line 43) | public int getSalary() {
    method getType (line 50) | public CustomerType getType() {
    method setSalary (line 57) | public void setSalary(int salary) {
    method setType (line 64) | public void setType(CustomerType type) {
    method toString (line 71) | @Override

FILE: examples/drools/drools-camel-cxf-server/src/main/java/org/apache/servicemix/examples/drools/camel/cxf/server/model/CustomerType.java
  type CustomerType (line 20) | public enum CustomerType {

FILE: examples/drools/drools-camel-cxf-server/src/main/java/org/apache/servicemix/examples/drools/camel/cxf/server/osgi/CommandMessageBodyRW.java
  class CommandMessageBodyRW (line 35) | @Consumes("text/plain")
    method getSize (line 47) | @Override
    method isWriteable (line 56) | @Override
    method writeTo (line 66) | @Override

FILE: examples/drools/drools-camel-cxf-server/src/main/java/org/apache/servicemix/examples/drools/camel/cxf/server/osgi/DebugAgendaEventListener.java
  class DebugAgendaEventListener (line 34) | public class DebugAgendaEventListener implements AgendaEventListener {
    method matchCreated (line 44) | @Override
    method matchCancelled (line 53) | @Override
    method beforeMatchFired (line 62) | @Override
    method afterMatchFired (line 71) | @Override
    method agendaGroupPopped (line 80) | @Override
    method agendaGroupPushed (line 89) | @Override
    method beforeRuleFlowGroupActivated (line 98) | @Override
    method afterRuleFlowGroupActivated (line 107) | @Override
    method beforeRuleFlowGroupDeactivated (line 116) | @Override
    method afterRuleFlowGroupDeactivated (line 126) | @Override

FILE: examples/drools/drools-camel-cxf-server/src/main/java/org/apache/servicemix/examples/drools/camel/cxf/server/osgi/DebugRuleRuntimeEventListener.java
  class DebugRuleRuntimeEventListener (line 29) | public class DebugRuleRuntimeEventListener implements RuleRuntimeEventLi...
    method objectInserted (line 39) | @Override
    method objectUpdated (line 47) | @Override
    method objectDeleted (line 56) | @Override

FILE: examples/drools/drools-camel-cxf-server/src/main/java/org/apache/servicemix/examples/drools/camel/cxf/server/osgi/Utils.java
  class Utils (line 28) | public class Utils {
    method customer (line 39) | public Customer customer() {
    method insertAndFireAll (line 48) | public Command<ExecutionResults> insertAndFireAll(final Customer body) {

FILE: examples/drools/drools-simple/src/main/java/org/apache/servicemix/examples/drools/simple/model/Customer.java
  class Customer (line 19) | public class Customer {
    method Customer (line 36) | public Customer(int salary) {
    method getSalary (line 43) | public int getSalary() {
    method getType (line 50) | public CustomerType getType() {
    method setSalary (line 58) | public void setSalary(int salary) {
    method setType (line 66) | public void setType(CustomerType type) {
    method toString (line 75) | @Override

FILE: examples/drools/drools-simple/src/main/java/org/apache/servicemix/examples/drools/simple/model/CustomerType.java
  type CustomerType (line 20) | public enum CustomerType {

FILE: examples/drools/drools-simple/src/main/java/org/apache/servicemix/examples/drools/simple/osgi/SimpleRuleActivator.java
  class SimpleRuleActivator (line 36) | public class SimpleRuleActivator implements BundleActivator {
    method start (line 49) | @Override
    method stop (line 89) | @Override

FILE: examples/drools/drools-simple/src/main/java/org/apache/servicemix/examples/drools/simple/osgi/Utils.java
  class Utils (line 22) | public final class Utils {
    method customerPoor (line 25) | public static Customer customerPoor() {
    method customerNormal (line 30) | public static Customer customerNormal() {
    method customerVip (line 35) | public static Customer customerVip() {

FILE: examples/drools/drools-simple/src/test/java/org/apache/servicemix/examples/drools/test/ActivatorTest.java
  class ActivatorTest (line 27) | public class ActivatorTest {
    method test (line 32) | @Test

FILE: examples/drools/drools-simple/src/test/java/org/apache/servicemix/examples/drools/test/SimpleTest.java
  class SimpleTest (line 38) | public class SimpleTest {
    method beforeClass (line 47) | @BeforeClass
    method afterClass (line 60) | @BeforeClass
    method testPool (line 70) | @Test
    method testNormal (line 78) | @Test
    method testVip (line 86) | @Test
    method test (line 94) | private void test(Customer customer, CustomerType expected) {

FILE: examples/drools/drools-spring/src/main/java/org/apache/servicemix/examples/drools/spring/model/Customer.java
  class Customer (line 20) | public class Customer {
    method Customer (line 37) | public Customer(int salary) {
    method getSalary (line 44) | public int getSalary() {
    method getType (line 51) | public CustomerType getType() {
    method setSalary (line 58) | public void setSalary(int salary) {
    method setType (line 65) | public void setType(CustomerType type) {
    method toString (line 72) | @Override

FILE: examples/drools/drools-spring/src/main/java/org/apache/servicemix/examples/drools/spring/model/CustomerType.java
  type CustomerType (line 20) | public enum CustomerType {

FILE: examples/drools/drools-spring/src/main/java/org/apache/servicemix/examples/drools/spring/osgi/DebugAgendaEventListener.java
  class DebugAgendaEventListener (line 34) | public class DebugAgendaEventListener implements AgendaEventListener {
    method matchCreated (line 44) | @Override
    method matchCancelled (line 53) | @Override
    method beforeMatchFired (line 62) | @Override
    method afterMatchFired (line 71) | @Override
    method agendaGroupPopped (line 80) | @Override
    method agendaGroupPushed (line 89) | @Override
    method beforeRuleFlowGroupActivated (line 98) | @Override
    method afterRuleFlowGroupActivated (line 107) | @Override
    method beforeRuleFlowGroupDeactivated (line 116) | @Override
    method afterRuleFlowGroupDeactivated (line 126) | @Override

FILE: examples/drools/drools-spring/src/main/java/org/apache/servicemix/examples/drools/spring/osgi/DebugRuleRuntimeEventListener.java
  class DebugRuleRuntimeEventListener (line 29) | public class DebugRuleRuntimeEventListener implements RuleRuntimeEventLi...
    method objectInserted (line 39) | @Override
    method objectUpdated (line 47) | @Override
    method objectDeleted (line 56) | @Override

FILE: examples/drools/drools-spring/src/main/java/org/apache/servicemix/examples/drools/spring/osgi/SimpleRuleBean.java
  class SimpleRuleBean (line 35) | public class SimpleRuleBean {
    method start (line 50) | public void start() throws Exception {
    method setKsession (line 79) | public void setKsession(StatelessKieSession ksession) {

FILE: examples/drools/drools-spring/src/main/java/org/apache/servicemix/examples/drools/spring/osgi/Utils.java
  class Utils (line 24) | public class Utils {
    method customer (line 34) | public static Customer customer() {

FILE: itests/src/test/java/org/apache/servicemix/itests/BasicDistroTest.java
  class BasicDistroTest (line 34) | @RunWith(PaxExam.class)
    method testCorrectStatus (line 38) | @Test
    method testNoErrors (line 52) | @Test
    method filterErrors (line 65) | private List<String> filterErrors(List<String> lines) {
    method isFragment (line 76) | private boolean isFragment(Bundle bundle) {
    method isActive (line 80) | private boolean isActive(Bundle bundle) {
    method isResolved (line 84) | private boolean isResolved(Bundle bundle) {

FILE: itests/src/test/java/org/apache/servicemix/itests/ExamplesCXFTest.java
  class ExamplesCXFTest (line 34) | @RunWith(PaxExam.class)
    method config (line 38) | @Configuration
    method testExampleCxfJAXRS (line 46) | @Test
    method testExampleCxfJAXRSBlueprint (line 53) | @Test
    method testExampleCxfJAXWSBlueprint (line 60) | @Test
    method testExampleCxfOSGi (line 67) | @Test
    method testExampleCxfWsRm (line 75) | public void testExampleCxfWsRm() throws Exception {
    method testExampleCxfWsSecurityBlueprint (line 81) | @Test
    method testExampleCxfWsSecurityOSGi (line 88) | @Test
    method testExampleCxfWsSecuritySignature (line 95) | @Test
    method testExampleCxfWsn (line 102) | @Test

FILE: itests/src/test/java/org/apache/servicemix/itests/ExamplesCamelTest.java
  class ExamplesCamelTest (line 27) | @RunWith(PaxExam.class)
    method testExampleCamelCxfSoap (line 31) | @Test
    method testExampleCamelCxfRest (line 38) | @Test
    method testExampleCamelOsgi (line 45) | @Test
    method testExampleCamelBlueprint (line 53) | @Test
    method testExampleCamelDrools (line 60) | @Test
    method testExampleCamelDroolsBlueprint (line 67) | @Test

FILE: itests/src/test/java/org/apache/servicemix/itests/ExamplesDrools6Test.java
  class ExamplesDrools6Test (line 27) | @RunWith(PaxExam.class)
    method testKieBlueprint (line 31) | @Test
    method testKieSpring (line 37) | @Test
    method testKieCamel (line 43) | @Test
    method testDroolsSimpleExample (line 49) | @Test
    method testDroolsCamelExample (line 58) | @Test
    method testDroolSpringExample (line 65) | @Test
    method testDroolsCamelServerExample (line 72) | @Test

FILE: itests/src/test/java/org/apache/servicemix/itests/ExamplesTest.java
  class ExamplesTest (line 30) | @RunWith(PaxExam.class)
    method testActivity (line 34) | @Test
    method testExampleActiveMQ (line 50) | @Test

FILE: itests/src/test/java/org/apache/servicemix/itests/base/Features.java
  class Features (line 26) | public class Features implements AutoCloseable {
    method Features (line 31) | public Features(FeaturesService featuresService, boolean uninstall, St...
    method close (line 38) | @Override

FILE: itests/src/test/java/org/apache/servicemix/itests/base/LogCollector.java
  class LogCollector (line 30) | public class LogCollector implements PaxAppender {
    method LogCollector (line 35) | public LogCollector(BundleContext context) {
    method doAppend (line 41) | @Override
    method expectContains (line 47) | public synchronized void expectContains(String message) throws Interru...
    method close (line 66) | public void close() {

FILE: itests/src/test/java/org/apache/servicemix/itests/base/ServiceMixDistroTest.java
  class ServiceMixDistroTest (line 45) | public class ServiceMixDistroTest {
    method initLog (line 58) | @Before
    method installOnly (line 63) | public Features installOnly(String ... names) throws Exception {
    method install (line 67) | public Features install(String ... names) throws Exception {
    method baseConfig (line 71) | public Option baseConfig() {
    method config (line 95) | @Configuration
    method stream (line 102) | protected InputStream stream(String content) throws UnsupportedEncodin...
    method closeLog (line 106) | @Before

FILE: logging/jms-appender/src/main/java/org/apache/servicemix/logging/jms/DefaultLoggingEventFormat.java
  class DefaultLoggingEventFormat (line 27) | public class DefaultLoggingEventFormat implements LoggingEventFormat {
    method toString (line 31) | public String toString(PaxLoggingEvent paxLoggingEvent) {
    method formatDate (line 67) | private String formatDate(long timestamp) {

FILE: logging/jms-appender/src/main/java/org/apache/servicemix/logging/jms/JMSAppender.java
  class JMSAppender (line 36) | public class JMSAppender implements PaxAppender {
    method close (line 53) | public void close() {
    method onBind (line 57) | public void onBind(ConnectionFactory service){
    method onUnbind (line 75) | public void onUnbind(ConnectionFactory service){
    method doAppend (line 79) | public void doAppend(final PaxLoggingEvent paxLoggingEvent) {
    method exclude (line 100) | private static boolean exclude(PaxLoggingEvent event) {
    method startsWith (line 104) | private static boolean startsWith(String string, String start) {
    method setJmsConnectionFactory (line 108) | public void setJmsConnectionFactory(ConnectionFactory jmsConnectionFac...
    method setDestinationName (line 112) | public void setDestinationName(String destinationName) {
    method setFormat (line 116) | public void setFormat(String name) {
    method getOrCreateConnection (line 124) | protected Connection getOrCreateConnection() throws JMSException {
    method getOrCreateSession (line 132) | protected Session getOrCreateSession() throws JMSException {
    method getOrCreatePublisher (line 139) | protected MessageProducer getOrCreatePublisher() throws JMSException {
    method closeJMSResources (line 149) | private void closeJMSResources() {
    method close (line 158) | private static void close(Object obj) {

FILE: logging/jms-appender/src/main/java/org/apache/servicemix/logging/jms/LoggingEventFormat.java
  type LoggingEventFormat (line 24) | public interface LoggingEventFormat {
    method toString (line 26) | public String toString(PaxLoggingEvent event);

FILE: logging/jms-appender/src/main/java/org/apache/servicemix/logging/jms/LogstashEventFormat.java
  class LogstashEventFormat (line 34) | public class LogstashEventFormat implements LoggingEventFormat {
    method toString (line 44) | public String toString(PaxLoggingEvent event) {

FILE: logging/jms-appender/src/test/java/org/apache/servicemix/logging/jms/JMSAppenderTest.java
  class JMSAppenderTest (line 32) | public class JMSAppenderTest extends CamelTestSupport {
    method setupBroker (line 39) | @BeforeClass
    method setupAppender (line 48) | @Before
    method closeAppender (line 55) | @After
    method stopBroker (line 61) | @AfterClass
    method testLogstashAppender (line 66) | @Test
    method testReconnectToBroker (line 76) | @Test
    method createJndiContext (line 93) | @Override
    method createRouteBuilder (line 100) | @Override

FILE: logging/jms-appender/src/test/java/org/apache/servicemix/logging/jms/LogstashEventFormatTest.java
  class LogstashEventFormatTest (line 33) | public class LogstashEventFormatTest {
    method testBasicLogstashFormat (line 37) | @Test

FILE: logging/jms-appender/src/test/java/org/apache/servicemix/logging/jms/MockEvents.java
  class MockEvents (line 28) | public class MockEvents {
    method createInfoEvent (line 36) | protected static PaxLoggingEvent createInfoEvent() {
    method createInfoEvent (line 40) | protected static PaxLoggingEvent createInfoEvent(String name, String m...
    method createEvent (line 46) | private static PaxLoggingEvent createEvent(Logger logger, Level level,...

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/Person.java
  type Person (line 27) | @WebService
    method getPerson (line 31) | @RequestWrapper(localName = "GetPerson", className = "${packageName}.t...

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/PersonImpl.java
  class PersonImpl (line 25) | @WebService(serviceName = "PersonService", endpointInterface = "${packag...
    method getPerson (line 28) | public void getPerson(Holder<String> personId, Holder<String> ssn, Hol...

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/UnknownPersonFault.java
  class UnknownPersonFault (line 21) | @WebFault(name = "UnknownPersonFault")
    method UnknownPersonFault (line 31) | public UnknownPersonFault(String message) {
    method UnknownPersonFault (line 35) | public UnknownPersonFault(String message, Throwable cause) {

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/client/Client.java
  class Client (line 22) | public final class Client {
    method Client (line 24) | private Client() {
    method main (line 27) | public static void main(String args[]) throws Exception {

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/types/GetPerson.java
  class GetPerson (line 45) | @XmlAccessorType(XmlAccessType.FIELD)
    method getPersonId (line 63) | public String getPersonId() {
    method setPersonId (line 75) | public void setPersonId(String value) {

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/types/GetPersonResponse.java
  class GetPersonResponse (line 47) | @XmlAccessorType(XmlAccessType.FIELD)
    method getPersonId (line 71) | public String getPersonId() {
    method setPersonId (line 83) | public void setPersonId(String value) {
    method getSsn (line 95) | public String getSsn() {
    method setSsn (line 107) | public void setSsn(String value) {
    method getName (line 119) | public String getName() {
    method setName (line 131) | public void setName(String value) {

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/types/ObjectFactory.java
  class ObjectFactory (line 36) | @XmlRegistry
    method ObjectFactory (line 44) | public ObjectFactory() {
    method createGetPersonResponse (line 51) | public GetPersonResponse createGetPersonResponse() {
    method createGetPerson (line 59) | public GetPerson createGetPerson() {
    method createUnknownPersonFault (line 67) | public UnknownPersonFault createUnknownPersonFault() {

FILE: tooling/archetypes/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/types/UnknownPersonFault.java
  class UnknownPersonFault (line 45) | @XmlAccessorType(XmlAccessType.FIELD)
    method getPersonId (line 63) | public String getPersonId() {
    method setPersonId (line 75) | public void setPersonId(String value) {

FILE: tooling/archetypes/servicemix-cxf-wsdl-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/PersonImpl.java
  class PersonImpl (line 26) | @WebService(serviceName = "PersonService", targetNamespace = "http://ser...
    method getPerson (line 30) | public void getPerson(Holder<String> personId, Holder<String> ssn, Hol...
Condensed preview — 406 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,359K chars).
[
  {
    "path": ".gitignore",
    "chars": 100,
    "preview": "generated-docs-karaf\n.settings\n.classpath\n.project\ntarget\n.idea\n.vscode\n*.i??\nvelocity.log\n.DS_Store"
  },
  {
    "path": "BUILDING",
    "chars": 2176,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "LICENSE",
    "chars": 11359,
    "preview": "\n                                 Apache License\n                           Version 2.0, January 2004\n                  "
  },
  {
    "path": "NOTICE",
    "chars": 1344,
    "preview": "   =========================================================================\r\n   ==  NOTICE file for use with the Apache"
  },
  {
    "path": "README",
    "chars": 2524,
    "preview": "/*\r\n * Licensed to the Apache Software Foundation (ASF) under one or more\r\n * contributor license agreements.  See the N"
  },
  {
    "path": "RELEASE-NOTES",
    "chars": 10807,
    "preview": "/*\r\n * Licensed to the Apache Software Foundation (ASF) under one or more\r\n * contributor license agreements.  See the N"
  },
  {
    "path": "activemq/activemq-camel/pom.xml",
    "chars": 2529,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "activemq/activemq-camel/src/main/java/org/apache/servicemix/activemq/camel/ActiveMQComponent.java",
    "chars": 1488,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOT"
  },
  {
    "path": "activemq/activemq-camel/src/main/java/org/apache/servicemix/activemq/camel/ActiveMQComponentResolver.java",
    "chars": 1986,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOT"
  },
  {
    "path": "activemq/activemq-camel/src/main/resources/OSGI-INF/blueprint/activemq-camel.xml",
    "chars": 1633,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "activemq/activemq-service/README.md",
    "chars": 2271,
    "preview": "<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See the"
  },
  {
    "path": "activemq/activemq-service/pom.xml",
    "chars": 3461,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "activemq/activemq-service/src/main/resources/OSGI-INF/blueprint/activemq-service.xml",
    "chars": 4553,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "activemq/activemq-service/src/main/resources/org.apache.servicemix.activemq.service.cfg",
    "chars": 974,
    "preview": "## ---------------------------------------------------------------------------\n## Licensed to the Apache Software Founda"
  },
  {
    "path": "activemq/pom.xml",
    "chars": 1684,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "activiti/activiti-config/pom.xml",
    "chars": 2998,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "activiti/activiti-config/src/main/java/org/apache/servicemix/activiti/config/CamelAwareELResolver.java",
    "chars": 2910,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "activiti/activiti-config/src/main/resources/OSGI-INF/blueprint/activiti-config.xml",
    "chars": 7200,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "activiti/activiti-config/src/test/java/org/apache/servicemix/activiti/config/CamelAwareELResolverTest.java",
    "chars": 1899,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "activiti/activiti-config/src/test/resources/log4j.properties",
    "chars": 1360,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "activiti/pom.xml",
    "chars": 1659,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "assemblies/apache-servicemix/pom.xml",
    "chars": 19769,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/descriptors/unix-bin.xml",
    "chars": 1127,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/descriptors/unix-src.xml",
    "chars": 4132,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n  Licensed to the Apache Software Foundation (ASF) under one or more\n  contr"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/filtered-resources/etc/org.apache.karaf.features.cfg",
    "chars": 3474,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/filtered-resources/etc/overrides.properties",
    "chars": 2237,
    "preview": "#\n#    Licensed to the Apache Software Foundation (ASF) under one or more\n#    contributor license agreements.  See the "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/common-unix-bin.xml",
    "chars": 2186,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/custom.properties",
    "chars": 1306,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/jre.properties",
    "chars": 15567,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/org.apache.activemq.webconsole.cfg",
    "chars": 1248,
    "preview": "## ---------------------------------------------------------------------------\n## Licensed to the Apache Software Founda"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/org.apache.aries.transaction.cfg",
    "chars": 915,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/org.apache.cxf.wsn.cfg",
    "chars": 992,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/org.ops4j.pax.logging.cfg",
    "chars": 4393,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/org.ops4j.pax.url.mvn.cfg",
    "chars": 7828,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/org.ops4j.pax.web.cfg.empty.stub",
    "chars": 2140,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/system.properties",
    "chars": 5905,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/etc/users.properties",
    "chars": 1684,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/licenses/asm.txt",
    "chars": 1512,
    "preview": "Copyright (c) 2000-2005 INRIA, France Telecom\nAll rights reserved.\n\nRedistribution and use in source and binary forms, w"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/licenses/bsd.txt",
    "chars": 1514,
    "preview": "The BSD License\n\n   Copyright (c) <YEAR>, <OWNER>\n   All rights reserved.\n\n   Redistribution and use in source and binar"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/licenses/cddl-1.0.txt",
    "chars": 20162,
    "preview": "\nCOMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0\n\n\n      1. Definitions.\n\n            1.1. ÒContributorÓ "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/licenses/cpl-1.0.txt",
    "chars": 11613,
    "preview": "Common Public License Version 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC\nLICENSE (\""
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/licenses/epl-1.0.txt",
    "chars": 11232,
    "preview": "Eclipse Public License - v 1.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (\"AG"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/licenses/slf4j-mit.txt",
    "chars": 1151,
    "preview": " Copyright (c) 2004-2011 QOS.ch\n All rights reserved.\n\n Permission is hereby granted, free  of charge, to any person obt"
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/setenv-unix",
    "chars": 851,
    "preview": "#\n#    Licensed to the Apache Software Foundation (ASF) under one or more\n#    contributor license agreements.  See the "
  },
  {
    "path": "assemblies/apache-servicemix/src/main/resources/setenv-win",
    "chars": 880,
    "preview": "rem\nrem    Licensed to the Apache Software Foundation (ASF) under one or more\nrem    contributor license agreements.  Se"
  },
  {
    "path": "assemblies/apache-servicemix-examples/pom.xml",
    "chars": 2776,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "assemblies/apache-servicemix-examples/src/main/filtered-resources/pom.xml",
    "chars": 8641,
    "preview": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:sc"
  },
  {
    "path": "assemblies/features/pom.xml",
    "chars": 1722,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "assemblies/features/servicemix-examples/pom.xml",
    "chars": 2265,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "assemblies/features/servicemix-examples/src/main/feature/feature.xml",
    "chars": 12531,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "assemblies/features/servicemix-features/pom.xml",
    "chars": 2265,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "assemblies/features/servicemix-features/src/main/feature/feature.xml",
    "chars": 11211,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "assemblies/features/servicemix-kie/pom.xml",
    "chars": 2255,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "assemblies/features/servicemix-kie/src/main/feature/feature.xml",
    "chars": 5213,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "assemblies/pom.xml",
    "chars": 1716,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "branding/pom.xml",
    "chars": 2860,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "branding/src/main/resources/org/apache/karaf/branding/branding.properties",
    "chars": 1689,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "etc/appended-resources/supplemental-models.xml",
    "chars": 38212,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<supplementalDataModels>\n  <supplement>\n    <project>\n      <groupId>com.sun.xml."
  },
  {
    "path": "examples/README.txt",
    "chars": 5292,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/activemq/activemq-camel-blueprint/README.txt",
    "chars": 9300,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/activemq/activemq-camel-blueprint/org.apache.servicemix.examples.cfg",
    "chars": 818,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "examples/activemq/activemq-camel-blueprint/pom.xml",
    "chars": 2326,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/activemq/activemq-camel-blueprint/src/main/java/org/apache/servicemix/examples/activemq/MyTransform.java",
    "chars": 1667,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/activemq/activemq-camel-blueprint/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2378,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/activemq/pom.xml",
    "chars": 1611,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/activiti/activiti-camel/README.txt",
    "chars": 5989,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/activiti/activiti-camel/pom.xml",
    "chars": 2512,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/activiti/activiti-camel/src/main/java/org/apache/servicemix/examples/activiti/ActivitiRouteBuilder.java",
    "chars": 4289,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/activiti/activiti-camel/src/main/resources/OSGI-INF/activiti/OrderProcess.bpmn20.xml",
    "chars": 2057,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "examples/activiti/activiti-camel/src/main/resources/OSGI-INF/blueprint/activiti-camel.xml",
    "chars": 2064,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "examples/activiti/pom.xml",
    "chars": 1596,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/akka/akka-camel/README.txt",
    "chars": 5424,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/akka/akka-camel/pom.xml",
    "chars": 4333,
    "preview": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocat"
  },
  {
    "path": "examples/akka/akka-camel/src/main/resources/application.conf",
    "chars": 2353,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "examples/akka/akka-camel/src/main/scala/org/apache/servicemix/examples/akka/Application.scala",
    "chars": 1846,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/akka/akka-camel/src/main/scala/org/apache/servicemix/examples/akka/CamelBridge.scala",
    "chars": 2588,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/akka/akka-camel/src/main/scala/org/apache/servicemix/examples/akka/RouteBuilder.scala",
    "chars": 1772,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/akka/akka-camel/src/main/scala/org/apache/servicemix/examples/akka/Stats.scala",
    "chars": 4476,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/application.conf",
    "chars": 2474,
    "preview": "################################################################################\n#\n#    Licensed to the Apache Software "
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/generate_test_data.rb",
    "chars": 1068,
    "preview": "#!/usr/bin/ruby\n\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements. "
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/log4j.properties",
    "chars": 1420,
    "preview": "#\n#    Licensed to the Apache Software Foundation (ASF) under one or more\n#    contributor license agreements.  See the "
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/samples/file1.csv",
    "chars": 1581,
    "preview": "BEL,911\nTT0,934\nBEL,496\nGRL,228\nGRL,515\nTT0,664\nTT0,578\nGBR,488\nAUS,686\nGRC,943\nTT0,980\nGRL,458\nCHN,735\nSWE,939\nUSA,984\n"
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/samples/file2.csv",
    "chars": 1579,
    "preview": "GRL,473\nTT0,491\nIRL,981\nUSA,594\nBEL,339\nTT0,504\nNLD,421\nBEL,85\nGRC,410\nIRL,394\nBEL,783\nSWE,551\nTT0,547\nIRL,923\nZMB,50\nGR"
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/samples/file3.csv",
    "chars": 1577,
    "preview": "FRA,672\nUSA,491\nGER,503\nSWE,730\nNLD,242\nZMB,259\nNOR,565\nGBR,38\nAUS,333\nSWE,922\nUSA,983\nIRL,953\nGRC,780\nIRL,446\nGRC,889\nU"
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/samples/file4.csv",
    "chars": 1577,
    "preview": "USA,741\nFRA,291\nGBR,383\nAUS,250\nNLD,561\nTT0,70\nGRC,942\nCAN,107\nNLD,618\nZMB,130\nFRA,927\nGRL,890\nCHN,510\nFRA,966\nGBR,98\nFR"
  },
  {
    "path": "examples/akka/akka-camel/src/test/resources/samples/file5.csv",
    "chars": 1580,
    "preview": "GRC,360\nNOR,151\nFRA,138\nGBR,559\nAUS,222\nNOR,899\nGER,733\nTZA,535\nGER,214\nTZA,154\nGRC,464\nSWE,426\nIRL,158\nAUS,417\nBEL,848\n"
  },
  {
    "path": "examples/akka/akka-camel/src/test/scala/org/apache/servicemix/examples/akka/RouteBuilderTest.scala",
    "chars": 2040,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/akka/akka-camel/src/test/scala/org/apache/servicemix/examples/akka/StatsTest.scala",
    "chars": 2739,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/akka/pom.xml",
    "chars": 1589,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-blueprint/README.txt",
    "chars": 8676,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-blueprint/org.apache.servicemix.examples.cfg",
    "chars": 818,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "examples/camel/camel-blueprint/pom.xml",
    "chars": 2271,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-blueprint/src/main/java/org/apache/servicemix/examples/camel/MyTransform.java",
    "chars": 1664,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-blueprint/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 1913,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-cxf-rest/README.txt",
    "chars": 6988,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-client/pom.xml",
    "chars": 2385,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-client/src/main/java/org/apache/servicemix/examples/camel/rest/client/Client.java",
    "chars": 3959,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-route/pom.xml",
    "chars": 2603,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-route/src/main/java/org/apache/servicemix/examples/camel/rest/PersonService.java",
    "chars": 1474,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-route/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2264,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-service/pom.xml",
    "chars": 2496,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-service/src/main/java/org/apache/servicemix/examples/camel/rest/ServiceHandler.java",
    "chars": 2447,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-service/src/main/java/org/apache/servicemix/examples/camel/rest/model/Person.java",
    "chars": 1807,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-rest/camel-cxf-rest-service/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2324,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-cxf-rest/pom.xml",
    "chars": 1652,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-cxf-soap/README.txt",
    "chars": 7005,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-client/pom.xml",
    "chars": 2763,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-client/src/main/java/org/apache/servicemix/examples/camel/soap/client/Client.java",
    "chars": 3437,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-route/pom.xml",
    "chars": 2517,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-route/src/main/java/org/apache/servicemix/examples/camel/soap/PersonService.java",
    "chars": 1316,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-route/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2230,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-service/pom.xml",
    "chars": 2499,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-service/src/main/java/org/apache/servicemix/examples/camel/soap/ServiceHandler.java",
    "chars": 2219,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-service/src/main/java/org/apache/servicemix/examples/camel/soap/model/Person.java",
    "chars": 1807,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-service/src/main/java/org/apache/servicemix/examples/camel/soap/model/PersonException.java",
    "chars": 1354,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-cxf-soap/camel-cxf-soap-service/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2327,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-cxf-soap/pom.xml",
    "chars": 1655,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-drools/README.txt",
    "chars": 7516,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-drools/pom.xml",
    "chars": 4308,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/Drinks.java",
    "chars": 1310,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/DroolsCommandHelper.java",
    "chars": 1843,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/Person.java",
    "chars": 2862,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/PersonHelper.java",
    "chars": 1321,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools/src/main/java/org/apache/servicemix/examples/camel/Sex.java",
    "chars": 888,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools/src/main/resources/META-INF/spring/camel-context.xml",
    "chars": 5911,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-drools/src/main/resources/log4j.properties",
    "chars": 1360,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "examples/camel/camel-drools/src/main/resources/testSpring.drl",
    "chars": 2142,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/README.txt",
    "chars": 7654,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/pom.xml",
    "chars": 4330,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/Drinks.java",
    "chars": 1310,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/DroolsBlueprintBean.java",
    "chars": 3882,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/DroolsCommandHelper.java",
    "chars": 1843,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/Person.java",
    "chars": 2778,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/PersonHelper.java",
    "chars": 1321,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/java/org/apache/servicemix/examples/camel/Sex.java",
    "chars": 888,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 4613,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/resources/log4j.properties",
    "chars": 1360,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "examples/camel/camel-drools-blueprint/src/main/resources/testSpring.drl",
    "chars": 2142,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-osgi/README.txt",
    "chars": 8375,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-osgi/org.apache.servicemix.examples.cfg",
    "chars": 818,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "examples/camel/camel-osgi/pom.xml",
    "chars": 2584,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-osgi/src/main/java/org/apache/servicemix/examples/camel/MyRouteBuilder.java",
    "chars": 1615,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-osgi/src/main/java/org/apache/servicemix/examples/camel/MyTransform.java",
    "chars": 1721,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-osgi/src/main/resources/META-INF/spring/beans.xml",
    "chars": 2496,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "examples/camel/camel-sql/README.txt",
    "chars": 9340,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-derby/pom.xml",
    "chars": 2471,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-derby/src/main/java/org/apache/servicemix/examples/camel/sql/DatabaseBeanDerby.java",
    "chars": 1837,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-derby/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2492,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-h2/pom.xml",
    "chars": 2452,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-h2/src/main/java/org/apache/servicemix/examples/camel/sql/DatabaseBeanH2.java",
    "chars": 1813,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-h2/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2468,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-pgsql/pom.xml",
    "chars": 2680,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-pgsql/src/main/java/org/apache/servicemix/examples/camel/sql/DatabaseBeanPgSQL.java",
    "chars": 1901,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-datasource-pgsql/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2619,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-orders/pom.xml",
    "chars": 2455,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-orders/src/main/java/org/apache/servicemix/examples/camel/sql/ListenerBean.java",
    "chars": 1326,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-orders/src/main/java/org/apache/servicemix/examples/camel/sql/OrderBean.java",
    "chars": 2255,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NO"
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-orders/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2596,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    "
  },
  {
    "path": "examples/camel/camel-sql/camel-sql-orders/src/main/resources/sql.properties",
    "chars": 1284,
    "preview": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE"
  },
  {
    "path": "examples/camel/camel-sql/pom.xml",
    "chars": 1697,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/camel/pom.xml",
    "chars": 1834,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/README.txt",
    "chars": 8384,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/pom.xml",
    "chars": 3721,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Customer.java",
    "chars": 1255,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/CustomerService.java",
    "chars": 3637,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Order.java",
    "chars": 2021,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Product.java",
    "chars": 1282,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/client/Client.java",
    "chars": 4572,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/resources/META-INF/spring/beans.xml",
    "chars": 1666,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one\n    or more c"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/resources/org/apache/servicemix/examples/cxf/jaxrs/client/add_customer.xml",
    "chars": 856,
    "preview": "<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See th"
  },
  {
    "path": "examples/cxf/cxf-jaxrs/src/main/resources/org/apache/servicemix/examples/cxf/jaxrs/client/update_customer.xml",
    "chars": 871,
    "preview": "<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See th"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/README.txt",
    "chars": 8399,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/pom.xml",
    "chars": 4046,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Customer.java",
    "chars": 1255,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/CustomerService.java",
    "chars": 9262,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Order.java",
    "chars": 2021,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/Product.java",
    "chars": 1282,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/java/org/apache/servicemix/examples/cxf/jaxrs/client/Client.java",
    "chars": 4572,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 2759,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one\n    or more c"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/resources/org/apache/servicemix/examples/cxf/jaxrs/client/add_customer.xml",
    "chars": 856,
    "preview": "<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See th"
  },
  {
    "path": "examples/cxf/cxf-jaxrs-blueprint/src/main/resources/org/apache/servicemix/examples/cxf/jaxrs/client/update_customer.xml",
    "chars": 871,
    "preview": "<!--\n\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  See th"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/README.txt",
    "chars": 7471,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/client.html",
    "chars": 4101,
    "preview": "<!--\n    \n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  Se"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/pom.xml",
    "chars": 3466,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/examples/cxf/EnableCORSInterceptor.java",
    "chars": 1797,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java",
    "chars": 1003,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java",
    "chars": 1141,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/src/main/java/org/apache/servicemix/samples/cxf_osgi/Client.java",
    "chars": 1923,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/src/main/resources/OSGI-INF/blueprint/blueprint.xml",
    "chars": 1877,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one\n    or more c"
  },
  {
    "path": "examples/cxf/cxf-jaxws-blueprint/src/main/resources/org/apache/servicemix/samples/cxf_osgi/request.xml",
    "chars": 1080,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "examples/cxf/cxf-osgi/README.txt",
    "chars": 7462,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/cxf/cxf-osgi/client.html",
    "chars": 4095,
    "preview": "<!--\n    \n    Licensed to the Apache Software Foundation (ASF) under one or more\n    contributor license agreements.  Se"
  },
  {
    "path": "examples/cxf/cxf-osgi/pom.xml",
    "chars": 3545,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
  },
  {
    "path": "examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/examples/cxf/EnableCORSInterceptor.java",
    "chars": 1797,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/examples/cxf/HelloWorld.java",
    "chars": 1003,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/examples/cxf/HelloWorldImpl.java",
    "chars": 1141,
    "preview": "/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOT"
  },
  {
    "path": "examples/cxf/cxf-osgi/src/main/java/org/apache/servicemix/samples/cxf_osgi/Client.java",
    "chars": 2026,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  },
  {
    "path": "examples/cxf/cxf-osgi/src/main/resources/META-INF/spring/beans.xml",
    "chars": 1621,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one\n    or more c"
  },
  {
    "path": "examples/cxf/cxf-osgi/src/main/resources/org/apache/servicemix/samples/cxf_osgi/request.xml",
    "chars": 1080,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n    Licensed to the Apache Software Foundation (ASF) under one or more\n    c"
  },
  {
    "path": "examples/cxf/cxf-ws-addressing/README.txt",
    "chars": 10063,
    "preview": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements.  See the NOT"
  }
]

// ... and 206 more files (download for full content)

About this extraction

This page contains the full source code of the apache/servicemix GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 406 files (1.2 MB), approximately 315.1k tokens, and a symbol index with 576 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!