summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/policy/PolicyRestInterfaceFactory.java
blob: 1570875c0445220a52dff1f68354d795637a1011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.vid.policy;

public class PolicyRestInterfaceFactory {

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

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