aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerProperties.java
blob: 15855b7bec229d2fbf01d8be7978a0866741f4ee (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
package org.openecomp.vid.scheduler;

import org.openecomp.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_CREATE_NEW_VNF_CHANGE_INSTANCE_VAL = "scheduler.create.new.vnf.change.instance";

	public static final String SCHEDULER_GET_TIME_SLOTS = "scheduler.get.time.slots";

	public static final String SCHEDULER_SUBMIT_NEW_VNF_CHANGE = "scheduler.submit.new.vnf.change";

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

	public static final String GET_VERSION_BY_INVARIANT_ID = "aai_get_version_by_invariant_id";

}