You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fm...@apache.org on 2010/10/06 16:35:09 UTC

svn commit: r1005060 - /felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java

Author: fmeschbe
Date: Wed Oct  6 14:35:08 2010
New Revision: 1005060

URL: http://svn.apache.org/viewvc?rev=1005060&view=rev
Log:
JavaDoc

Modified:
    felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java

Modified: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java?rev=1005060&r1=1005059&r2=1005060&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java (original)
+++ felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/WebConsoleSecurityProvider.java Wed Oct  6 14:35:08 2010
@@ -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);