You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/08/22 10:11:27 UTC

svn commit: r433559 - /incubator/servicemix/trunk/servicemix-http/src/main/java/org/apache/servicemix/http/HttpBootstrap.java

Author: gnodet
Date: Tue Aug 22 01:11:27 2006
New Revision: 433559

URL: http://svn.apache.org/viewvc?rev=433559&view=rev
Log:
Add configuration mbean to http bootstrap

Modified:
    incubator/servicemix/trunk/servicemix-http/src/main/java/org/apache/servicemix/http/HttpBootstrap.java

Modified: incubator/servicemix/trunk/servicemix-http/src/main/java/org/apache/servicemix/http/HttpBootstrap.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-http/src/main/java/org/apache/servicemix/http/HttpBootstrap.java?rev=433559&r1=433558&r2=433559&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-http/src/main/java/org/apache/servicemix/http/HttpBootstrap.java (original)
+++ incubator/servicemix/trunk/servicemix-http/src/main/java/org/apache/servicemix/http/HttpBootstrap.java Tue Aug 22 01:11:27 2006
@@ -38,8 +38,10 @@
     
     protected InstallationContext context;
     protected ObjectName mbeanName;
+    protected HttpConfiguration configuration;
     
     public HttpBootstrap() {
+        configuration = new HttpConfiguration();
     }
     
     public ObjectName getExtensionMBeanName() {
@@ -47,7 +49,7 @@
     }
 
     protected Object getExtensionMBean() throws Exception {
-        return null;
+        return configuration;
     }
     
     protected ObjectName createExtensionMBeanName() throws Exception {