You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2009/08/25 14:21:22 UTC

svn commit: r807575 - in /camel/trunk/camel-core/src/main/java/org/apache/camel/management: ./ event/ mbean/

Author: davsclaus
Date: Tue Aug 25 12:21:20 2009
New Revision: 807575

URL: http://svn.apache.org/viewvc?rev=807575&view=rev
Log:
CAMEL-1933: Added missing package

Added:
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartedEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartingEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppedEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppingEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCompletedEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCreatedEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeFailedEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStartEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStopEvent.java   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html   (with props)
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html   (with props)
Modified:
    camel/trunk/camel-core/src/main/java/org/apache/camel/management/package.html

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartedEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartedEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartedEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartedEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,44 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.CamelContext;
+
+/**
+ * @version $Revision$
+ */
+public class CamelContextStartedEvent extends EventObject {
+
+    private CamelContext context;
+
+    public CamelContextStartedEvent(CamelContext source) {
+        super(source);
+        this.context = source;
+    }
+
+    public CamelContext getContext() {
+        return context;
+    }
+
+    @Override
+    public String toString() {
+        return "Started CamelContext: " + context.getName();
+    }
+
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartedEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartedEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartingEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartingEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartingEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartingEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,45 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.CamelContext;
+
+/**
+ * @version $Revision$
+ */
+public class CamelContextStartingEvent extends EventObject {
+
+    private CamelContext context;
+
+    public CamelContextStartingEvent(CamelContext source) {
+        super(source);
+        this.context = source;
+    }
+
+    public CamelContext getContext() {
+        return context;
+    }
+
+    @Override
+    public String toString() {
+        return "Starting CamelContext: " + context.getName();
+    }
+
+
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartingEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStartingEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppedEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppedEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppedEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppedEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,44 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.CamelContext;
+
+/**
+ * @version $Revision$
+ */
+public class CamelContextStoppedEvent extends EventObject {
+
+    private CamelContext context;
+
+    public CamelContextStoppedEvent(CamelContext source) {
+        super(source);
+        this.context = source;
+    }
+
+    public CamelContext getContext() {
+        return context;
+    }
+
+    @Override
+    public String toString() {
+        return "Stopped CamelContext: " + context.getName();
+    }
+
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppedEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppedEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppingEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppingEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppingEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppingEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,43 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.CamelContext;
+
+/**
+ * @version $Revision$
+ */
+public class CamelContextStoppingEvent extends EventObject {
+
+    private CamelContext context;
+
+    public CamelContextStoppingEvent(CamelContext source) {
+        super(source);
+        this.context = source;
+    }
+
+    public CamelContext getContext() {
+        return context;
+    }
+
+    @Override
+    public String toString() {
+        return "Stopping CamelContext: " + context.getName();
+    }
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppingEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/CamelContextStoppingEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCompletedEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCompletedEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCompletedEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCompletedEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,38 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.Exchange;
+
+/**
+ * @version $Revision$
+ */
+public class ExchangeCompletedEvent extends EventObject {
+
+    private Exchange exchange;
+
+    public ExchangeCompletedEvent(Exchange source) {
+        super(source);
+        this.exchange = source;
+    }
+
+    public Exchange getExchange() {
+        return exchange;
+    }
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCompletedEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCompletedEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCreatedEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCreatedEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCreatedEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCreatedEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,38 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.Exchange;
+
+/**
+ * @version $Revision$
+ */
+public class ExchangeCreatedEvent extends EventObject {
+
+    private Exchange exchange;
+
+    public ExchangeCreatedEvent(Exchange source) {
+        super(source);
+        this.exchange = source;
+    }
+
+    public Exchange getExchange() {
+        return exchange;
+    }
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCreatedEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeCreatedEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeFailedEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeFailedEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeFailedEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeFailedEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,39 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.Exchange;
+
+/**
+ * @version $Revision$
+ */
+public class ExchangeFailedEvent extends EventObject {
+
+    private Exchange exchange;
+
+    public ExchangeFailedEvent(Exchange source) {
+        super(source);
+        this.exchange = source;
+    }
+
+    public Exchange getExchange() {
+        return exchange;
+    }
+
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeFailedEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/ExchangeFailedEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStartEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStartEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStartEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStartEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,38 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.Route;
+
+/**
+ * @version $Revision$
+ */
+public class RouteStartEvent extends EventObject {
+
+    private Route route;
+
+    public RouteStartEvent(Route source) {
+        super(source);
+        this.route = source;
+    }
+
+    public Route getRoute() {
+        return route;
+    }
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStartEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStartEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStopEvent.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStopEvent.java?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStopEvent.java (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStopEvent.java Tue Aug 25 12:21:20 2009
@@ -0,0 +1,39 @@
+/**
+ * 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.management.event;
+
+import java.util.EventObject;
+
+import org.apache.camel.Route;
+
+/**
+ * @version $Revision$
+ */
+public class RouteStopEvent extends EventObject {
+
+    private Route route;
+
+    public RouteStopEvent(Route source) {
+        super(source);
+        this.route = source;
+    }
+
+    public Route getRoute() {
+        return route;
+    }
+
+}

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStopEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/RouteStopEvent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html Tue Aug 25 12:21:20 2009
@@ -0,0 +1,25 @@
+<!--
+    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.
+-->
+<html>
+<head>
+</head>
+<body>
+
+Camel management events
+
+</body>
+</html>

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/event/package.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html?rev=807575&view=auto
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html (added)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html Tue Aug 25 12:21:20 2009
@@ -0,0 +1,25 @@
+<!--
+    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.
+-->
+<html>
+<head>
+</head>
+<body>
+
+Camel management JMX Mbeans
+
+</body>
+</html>

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: camel/trunk/camel-core/src/main/java/org/apache/camel/management/mbean/package.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/management/package.html
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/management/package.html?rev=807575&r1=807574&r2=807575&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/management/package.html (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/management/package.html Tue Aug 25 12:21:20 2009
@@ -19,7 +19,7 @@
 </head>
 <body>
 
-Camel JMX export services.
+Camel management
 
 </body>
 </html>