JavaDoc

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1005060 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java b/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java
index 9d4ebd5..00bec5f 100644
--- a/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java
+++ b/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java
@@ -18,12 +18,18 @@
  */
 package org.apache.felix.webconsole;
 
-import java.security.GeneralSecurityException;
-
+/**
+ * The <code>WebConsoleSecurityProvider</code> is a service interface allowing
+ * to use an external system to authenticate users before granting access to
+ * the Web Console.
+ *
+ * @since Web Console 3.0.2
+ */
 public interface WebConsoleSecurityProvider {
 
     /**
-     * Check if the user with the specified password exists and return an object identifying the user, else null
+     * Check if the user with the specified password exists and return an
+     * object identifying the user, else null
      */
     public Object authenticate(String username, String password);