4993a005d97e66762326fbdb1e859b6c8cae90ea
[policy/engine.git] / ONAP-SDK-APP / src / main / java / org / openecomp / portalapp / lm / FusionLicenseManagerImpl.java
1 package org.openecomp.portalapp.lm;
2
3 import java.util.Date;
4 import java.util.List;
5 import java.util.Map;
6
7 import javax.servlet.ServletContext;
8
9 import org.openecomp.portalsdk.core.lm.FusionLicenseManager;
10 import org.springframework.stereotype.Component;
11
12 /*
13  *  Please note that this class is not being used; its a dummy stub to have a qualifying bean for the interface.
14  */
15
16 @Component
17 public class FusionLicenseManagerImpl implements FusionLicenseManager {
18
19         @Override
20         public void initKeyStoreParam() {
21                 
22         }
23         
24         @Override
25         public void initCipherParam() {
26                 
27         }
28
29         @Override       
30         public void initLicenseParam() {
31                 
32         }
33
34         @Override
35         public void doInitWork() {
36                 
37         }
38
39         @Override
40         public int installLicense() {
41                 return 0;
42         }
43
44         @Override
45         public synchronized int verifyLicense(ServletContext context) {
46                 return 0;
47         }
48
49         @Override
50         public void generateLicense(Map<String, String> clientInfoMap, List<String> ipAddressList) throws Exception {
51                 
52         }
53         
54         @Override
55         public String nvl(String s) {
56                 return null;
57         }
58
59         @Override
60         public Date getExpiredDate() {
61                 return null;
62         }
63
64         @Override       
65         public void setExpiredDate(Date expiredDate) {
66                 
67         }
68
69 }