summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm')
-rw-r--r--ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java24
-rw-r--r--ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/LicenseableClassImpl.java16
2 files changed, 23 insertions, 17 deletions
diff --git a/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java b/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java
index 31c02a9a..66208e19 100644
--- a/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java
+++ b/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java
@@ -6,7 +6,7 @@
* ===================================================================
*
* Unless otherwise specified, all software contained herein is licensed
- * under the Apache License, Version 2.0 (the “License”);
+ * under the Apache License, Version 2.0 (the "License");
* you may not use this software except in compliance with the License.
* You may obtain a copy of the License at
*
@@ -19,7 +19,7 @@
* limitations under the License.
*
* Unless otherwise specified, all documentation contained herein is licensed
- * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
* you may not use this documentation except in compliance with the License.
* You may obtain a copy of the License at
*
@@ -55,22 +55,22 @@ public class FusionLicenseManagerImpl implements FusionLicenseManager {
@Override
public void initKeyStoreParam() {
-
+ // a dummy stub for the interface
}
-
+
@Override
public void initCipherParam() {
-
+ // a dummy stub for the interface
}
- @Override
+ @Override
public void initLicenseParam() {
-
+ // a dummy stub for the interface
}
@Override
public void doInitWork() {
-
+ // a dummy stub for the interface
}
@Override
@@ -85,9 +85,9 @@ public class FusionLicenseManagerImpl implements FusionLicenseManager {
@Override
public void generateLicense(Map<String, String> clientInfoMap, List<String> ipAddressList) throws Exception {
-
+ // a dummy stub for the interface
}
-
+
@Override
public String nvl(String s) {
return null;
@@ -98,9 +98,9 @@ public class FusionLicenseManagerImpl implements FusionLicenseManager {
return null;
}
- @Override
+ @Override
public void setExpiredDate(Date expiredDate) {
-
+ // a dummy stub for the interface
}
}
diff --git a/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/LicenseableClassImpl.java b/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/LicenseableClassImpl.java
index 08aca3b8..074814dc 100644
--- a/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/LicenseableClassImpl.java
+++ b/ecomp-sdk/epsdk-app-os/src/main/java/org/onap/portalapp/lm/LicenseableClassImpl.java
@@ -6,7 +6,7 @@
* ===================================================================
*
* Unless otherwise specified, all software contained herein is licensed
- * under the Apache License, Version 2.0 (the “License”);
+ * under the Apache License, Version 2.0 (the "License");
* you may not use this software except in compliance with the License.
* You may obtain a copy of the License at
*
@@ -19,7 +19,7 @@
* limitations under the License.
*
* Unless otherwise specified, all documentation contained herein is licensed
- * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
* you may not use this documentation except in compliance with the License.
* You may obtain a copy of the License at
*
@@ -45,36 +45,42 @@ import org.onap.portalsdk.core.lm.LicenseableClass;
/*
* Please note that this class is not being used; its a dummy stub to have a qualifying bean for the interface.
*/
-
public class LicenseableClassImpl implements LicenseableClass {
-
+
+ @Override
public String getApplicationName() {
return "";
}
+ @Override
public InputStream getPublicKeystoreAsInputStream() throws FileNotFoundException {
return null;
}
+ @Override
public String getAlias() {
return "";
}
+ @Override
public String getKeyPasswd() {
return "";
}
+ @Override
public String getPublicKeystorePassword() {
return "";
}
+ @Override
public String getCipherParamPassword() {
return "";
}
+ @Override
@SuppressWarnings("rawtypes")
public Class getClassToLicense() {
return this.getClass();
}
-}
+}