CCSDK-1537 -add @override annotation above method signature 50/92050/1
authorThugutla Sailakshmi <tsaila10@in.ibm.com>
Thu, 25 Jul 2019 19:49:07 +0000 (01:19 +0530)
committerThugutla Sailakshmi <tsaila10@in.ibm.com>
Thu, 25 Jul 2019 19:49:30 +0000 (01:19 +0530)
add @override annotation above method signature

Issue-ID: CCSDK-1537
Change-Id: I13007066ea3545791c1fdf399b610118d0d09d48
Signed-off-by: Thugutla Sailakshmi <tsaila10@in.ibm.com>
ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/controller/ECDSingleSignOnController.java

index 9d28be7..49d5709 100644 (file)
@@ -26,6 +26,8 @@ package org.onap.ccsdk.dashboard.controller;
  * ECOMP Portal SDK
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property
+ * 
+ * Modifications Copyright (C) 2019 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -271,14 +273,16 @@ public class ECDSingleSignOnController extends UnRestrictedBaseController {
         return request.getSession().getId();
     }
 
+    @Override
     public String getViewName() {
         return viewName;
     }
-
+    
+    @Override
     public void setViewName(String viewName) {
         this.viewName = viewName;
     }
-
+    
     public String getWelcomeView() {
         return welcomeView;
     }