diff options
author | surya-huawei <a.u.surya@huawei.com> | 2017-09-25 14:06:46 +0530 |
---|---|---|
committer | SURYA A U <a.u.surya@huawei.com> | 2017-09-27 03:09:00 +0000 |
commit | 1615cc7743d80c6ed1822013923e6324d2307b29 (patch) | |
tree | f78ccd67cec4ed15fd3d80055473d935e6868944 /oom-app-os/src/main | |
parent | 4937919008afe8d0955a5e2fc842c130ccd917a8 (diff) |
Add @Override annotation
*Major sonar issue in ccsdk/dashboard module
This is done to increase the code readability
Issue-Id: CCSDK-87
Change-Id: If34d7f18169f955a1dbc112c7ea44d8dd3d4833d
Signed-off-by: surya-huawei <a.u.surya@huawei.com>
Diffstat (limited to 'oom-app-os/src/main')
-rw-r--r-- | oom-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/oom-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java b/oom-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java index 7a08f54..e0da1c9 100644 --- a/oom-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java +++ b/oom-app-os/src/main/java/org/onap/portalapp/lm/FusionLicenseManagerImpl.java @@ -40,18 +40,22 @@ public class FusionLicenseManagerImpl implements FusionLicenseManager { * An implementation of the KeyStoreParam interface that returns the * information required to work with the keystore containing the private key. */ + @Override public void initKeyStoreParam() { } + @Override public void initCipherParam() { } /** * Create/populate the "licenseParm" field. */ + @Override public void initLicenseParam() { } + @Override public void doInitWork() { } @@ -61,10 +65,12 @@ public class FusionLicenseManagerImpl implements FusionLicenseManager { * * @return true if the license installed properly, false otherwise. */ + @Override public int installLicense() { return INVALID_LICENSE; } + @Override public synchronized int verifyLicense(ServletContext context) { return INVALID_LICENSE; @@ -79,10 +85,12 @@ public class FusionLicenseManagerImpl implements FusionLicenseManager { return (s == null) ? "" : s; } + @Override public Date getExpiredDate() { return expiredDate; } + @Override public void setExpiredDate(Date expiredDate) { this.expiredDate = expiredDate; } |