You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ak...@apache.org on 2010/09/24 21:13:53 UTC

svn commit: r1001031 - in /camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy: ./ quartz/ quartz/myquartz.properties

Author: akarpe
Date: Fri Sep 24 19:13:52 2010
New Revision: 1001031

URL: http://svn.apache.org/viewvc?rev=1001031&view=rev
Log:
CAMEL-2936 Provided a ScheduledRoutePolicy to make it easy to define when routes should be active, stopped or suspended

Added:
    camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/
    camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/quartz/
    camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/quartz/myquartz.properties   (with props)

Added: camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/quartz/myquartz.properties
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/quartz/myquartz.properties?rev=1001031&view=auto
==============================================================================
--- camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/quartz/myquartz.properties (added)
+++ camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/quartz/myquartz.properties Fri Sep 24 19:13:52 2010
@@ -0,0 +1,26 @@
+## ------------------------------------------------------------------------
+## 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.
+## ------------------------------------------------------------------------
+
+org.quartz.scheduler.instanceName = MyScheduler
+org.quartz.scheduler.instanceId = 2
+org.quartz.scheduler.rmi.export = false
+org.quartz.scheduler.rmi.proxy = false
+
+org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
+org.quartz.threadPool.threadCount = 3
+
+org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore
\ No newline at end of file

Propchange: camel/trunk/components/camel-quartz/src/test/resources/org/apache/camel/routepolicy/quartz/myquartz.properties
------------------------------------------------------------------------------
    svn:eol-style = native