nexus site path corrected
[portal.git] / ecomp-portal-BE / war / WEB-INF / conf / quartz.properties
1 ###
2 # ================================================================================
3 # eCOMP Portal
4 # ================================================================================
5 # Copyright (C) 2017 AT&T Intellectual Property
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10
11 #      http://www.apache.org/licenses/LICENSE-2.0
12
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ================================================================================
19 ###
20 #################################################################################
21 # Quartz configurations for Quantum Work Flow                                                                   #
22 #################################################################################
23
24 org.quartz.scheduler.instanceId = AUTO
25
26 #################################################################################
27 # Main configurations
28 org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
29 org.quartz.threadPool.threadCount = 30
30
31 ============================================================================
32 # Configure JobStore  
33 #============================================================================
34
35 org.quartz.jobStore.misfireThreshold = 60000
36
37 org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
38 org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
39 org.quartz.jobStore.useProperties = false
40 #org.quartz.jobStore.dataSource = myDS
41 org.quartz.jobStore.tablePrefix = FN_QZ_
42
43 org.quartz.jobStore.isClustered = true
44 org.quartz.jobStore.clusterCheckinInterval = 20000
45
46 #============================================================================
47 # Configure Datasources  
48 #============================================================================
49
50 #org.quartz.dataSource.myDS.driver = com.mysql.jdbc.Driver
51 #org.quartz.dataSource.myDS.URL = jdbc:mysql://localhost:3306/portal
52 #org.quartz.dataSource.myDS.user = todo
53 #org.quartz.dataSource.myDS.password = todo
54 #org.quartz.dataSource.myDS.maxConnections = 5
55 #org.quartz.dataSource.myDS.validationQuery=select 0 from dual