Fixed sonar issue, annotate interface with @FunctionalInterface
annotation
Issue-ID: PORTAL-374
Change-Id: I30472b6c18ef350b687d74acce4545c250462f6d
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
  * ONAP Portal
  * ===================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * 
+ * Modifications Copyright (C) 2018 IBM.
  * ===================================================================
  *
  * Unless otherwise specified, all software contained herein is licensed
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
+@FunctionalInterface
 public interface LoginStrategy {
        public boolean login(HttpServletRequest request, HttpServletResponse response)  throws Exception;
 }