aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/scheduler/SchedulerProperties.java
blob: 8f0b6b0e5a4bd6a51c735ec557563e1f16fed49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.onap.vid.scheduler;

import org.onap.portalsdk.core.util.SystemProperties;


public class SchedulerProperties extends SystemProperties { 
	
	public static final String SCHEDULER_USER_NAME_VAL =  "scheduler.user.name";
		
	public static final String SCHEDULER_PASSWORD_VAL = "scheduler.password";
	
	public static final String SCHEDULER_SERVER_URL_VAL = "scheduler.server.url";

	public static final String SCHEDULER_GET_SCHEDULES = "scheduler.get.schedules";

	public static final String SCHEDULER_DELETE_SCHEDULE = "scheduler.delete.schedule";


}