summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/src/main/java/org/openecomp/portalapp/lm/FusionLicenseManagerImpl.java
blob: 4993a005d97e66762326fbdb1e859b6c8cae90ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package org.openecomp.portalapp.lm;

import java.util.Date;
import java.util.List;
import java.util.Map;

import javax.servlet.ServletContext;

import org.openecomp.portalsdk.core.lm.FusionLicenseManager;
import org.springframework.stereotype.Component;

/*
 *  Please note that this class is not being used; its a dummy stub to have a qualifying bean for the interface.
 */

@Component
public class FusionLicenseManagerImpl implements FusionLicenseManager {

	@Override
	public void initKeyStoreParam() {
		
	}
	
	@Override
	public void initCipherParam() {
		
	}

	@Override	
	public void initLicenseParam() {
		
	}

	@Override
	public void doInitWork() {
		
	}

	@Override
	public int installLicense() {
		return 0;
	}

	@Override
	public synchronized int verifyLicense(ServletContext context) {
		return 0;
	}

	@Override
	public void generateLicense(Map<String, String> clientInfoMap, List<String> ipAddressList) throws Exception {
		
	}
	
	@Override
	public String nvl(String s) {
		return null;
	}

	@Override
	public Date getExpiredDate() {
		return null;
	}

	@Override	
	public void setExpiredDate(Date expiredDate) {
		
	}

}