aboutsummaryrefslogtreecommitdiffstats
path: root/integrity-monitor/src/main/java/org/openecomp/policy/common/im/IntegrityMonitorProperties.java
blob: 8c3d7e6bfd2790aa3b266a7a2099bfc9b14c5821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*-
 * ============LICENSE_START=======================================================
 * Integrity Monitor
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed 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.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.policy.common.im;

public class IntegrityMonitorProperties {

	public static final String DEFAULT_DB_DRIVER = "org.h2.Driver";
	public static final String DEFAULT_DB_URL = "jdbc:h2:file:./sql/imTest";
	public static final String DEFAULT_DB_USER = "sa";
	public static final String DEFAULT_DB_PWD = "";
	
	public static final String DB_DRIVER = "javax.persistence.jdbc.driver";
	public static final String DB_URL = "javax.persistence.jdbc.url";
	public static final String DB_USER = "javax.persistence.jdbc.user";
	public static final String DB_PWD = "javax.persistence.jdbc.password";
	
	// intervals specified are in seconds
	public static final int DEFAULT_MONITOR_INTERVAL = 30;
	public static final int DEFAULT_FAILED_COUNTER_THRESHOLD = 3;
	public static final int DEFAULT_TEST_INTERVAL = 10; //20;
	public static final int DEFAULT_WRITE_FPC_INTERVAL = 5;
	public static final int DEFAULT_MAX_FPC_UPDATE_INTERVAL = 60;
	
	public static final String FP_MONITOR_INTERVAL = "fp_monitor_interval";
	public static final String FAILED_COUNTER_THRESHOLD = "failed_counter_threshold";
	public static final String TEST_TRANS_INTERVAL = "test_trans_interval";
	public static final String WRITE_FPC_INTERVAL = "write_fpc_interval";
	
	public static final String DEPENDENCY_GROUPS = "dependency_groups";
	public static final String SITE_NAME = "site_name";
	public static final String NODE_TYPE = "node_type";
	
	public static final String TEST_VIA_JMX = "test_via_jmx";
	public static final String JMX_FQDN = "jmx_fqdn";
	public static final String MAX_FPC_UPDATE_INTERVAL = "max_fpc_update_interval";
	
}