Rename aaa-authn-odl-plugin to netconf-auth-aaa
[netconf.git] / netconf / netconf-auth / src / main / java / org / opendaylight / netconf / auth / AuthProvider.java
index e32b20bf3451ea44a0c46f59c8ebab295b92142d..db46d48663104ff78f062a2b2123aa53e25cebd3 100644 (file)
@@ -5,14 +5,12 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.netconf.auth;
 
 /**
  * Authentication Service definition for netconf.
  */
 public interface AuthProvider {
-
     /**
      * Authenticate user by username/password.
      *
@@ -21,5 +19,4 @@ public interface AuthProvider {
      * @return true if authentication is successful, false otherwise
      */
     boolean authenticated(String username, String password);
-
 }