Code Review
/
portal.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c6dd440db01695acfe84549320c720817b3ed7de
[portal.git]
/
1
2
package org.openecomp.portalapp.portal.scheduler.policy;
3
4
public class PolicyRestInterfaceFactory {
5
6
7
public static PolicyRestInterfaceIfc getInstance () {
8
PolicyRestInterfaceIfc obj = null;
9
10
obj = new PolicyRestInterface();
11
12
return ( obj );
13
}
14
}