aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/scheduler/SchedulerRestInterfaceFactory.java
blob: bf7bd8891be8bad1894a5eea209390e83a54ab36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.vid.scheduler;

public class SchedulerRestInterfaceFactory {

	
	public static SchedulerRestInterfaceIfc getInstance () {
		SchedulerRestInterfaceIfc obj = null;

		obj = new SchedulerRestInterface();
		
		return ( obj );
	}

}