Author: cmoulliard
Date: Fri Feb 17 16:56:50 2012
New Revision: 1245653
URL: http://svn.apache.org/viewvc?rev=1245653&view=rev
Log:
Add CdiCamelContext class which allows to produce using @Named("simpleContext")
a DefaultCamelContext using CDI
Added:
camel/trunk/components/camel-cdi/src/main/java/org/apache/camel/component/cdi/CdiCamelContext.java
Added:
camel/trunk/components/camel-cdi/src/main/java/org/apache/camel/component/cdi/CdiCamelContext.java
URL:
http://svn.apache.org/viewvc/camel/trunk/components/camel-cdi/src/main/java/org/apache/camel/component/cdi/CdiCamelContext.java?rev=1245653&view=auto
==============================================================================
---
camel/trunk/components/camel-cdi/src/main/java/org/apache/camel/component/cdi/CdiCamelContext.java
(added)
+++
camel/trunk/components/camel-cdi/src/main/java/org/apache/camel/component/cdi/CdiCamelContext.java
Fri Feb 17 16:56:50 2012
@@ -0,0 +1,47 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.cdi;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.impl.DefaultCamelContext;
+import org.apache.camel.spi.Registry;
+
+import javax.enterprise.inject.Produces;
+import javax.inject.Named;
+
+/**
+ * CDI Camel Context class
+ * Register the CDIBeasnManager to lookup CDI Beans
+ * Can be used to produce a SimpleDefaultContext
+ */
+public class CdiCamelContext extends DefaultCamelContext {
+
+ private final Registry registry;
+ private final CamelContext context;
+
+ public CdiCamelContext() {
+ this.registry = new CdiBeanRegistry();
+ this.context = new DefaultCamelContext(registry);
+
+ }
+
+ @Named("simpleContext") @Produces
+ public DefaultCamelContext createContext() throws Exception {
+ return (DefaultCamelContext) context;
+ }
+
+}
\ No newline at end of file