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

public class PolicyRestInterfaceFactory {

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

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