Added missing license headers
[policy/engine.git] / ONAP-SDK-APP / src / main / java / org / openecomp / portalapp / lm / FusionLicenseManagerImpl.java
1 /*-
2  * ================================================================================
3  * ONAP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.lm;
21
22 import java.util.Date;
23 import java.util.List;
24 import java.util.Map;
25
26 import javax.servlet.ServletContext;
27
28 import org.openecomp.portalsdk.core.lm.FusionLicenseManager;
29 import org.springframework.stereotype.Component;
30
31 /*
32  *  Please note that this class is not being used; its a dummy stub to have a qualifying bean for the interface.
33  */
34
35 @Component
36 public class FusionLicenseManagerImpl implements FusionLicenseManager {
37
38         @Override
39         public void initKeyStoreParam() {
40                 
41         }
42         
43         @Override
44         public void initCipherParam() {
45                 
46         }
47
48         @Override       
49         public void initLicenseParam() {
50                 
51         }
52
53         @Override
54         public void doInitWork() {
55                 
56         }
57
58         @Override
59         public int installLicense() {
60                 return 0;
61         }
62
63         @Override
64         public synchronized int verifyLicense(ServletContext context) {
65                 return 0;
66         }
67
68         @Override
69         public void generateLicense(Map<String, String> clientInfoMap, List<String> ipAddressList) throws Exception {
70                 
71         }
72         
73         @Override
74         public String nvl(String s) {
75                 return null;
76         }
77
78         @Override
79         public Date getExpiredDate() {
80                 return null;
81         }
82
83         @Override       
84         public void setExpiredDate(Date expiredDate) {
85                 
86         }
87
88 }