X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=netconf%2Fnetconf-auth%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fauth%2FAuthProvider.java;h=db46d48663104ff78f062a2b2123aa53e25cebd3;hb=5b5f546ccc244be5eef581edb89320e9f2d6bbab;hp=e32b20bf3451ea44a0c46f59c8ebab295b92142d;hpb=a51a35e905d622b1882ca7d2d10e4b5f5fa791e7;p=netconf.git diff --git a/netconf/netconf-auth/src/main/java/org/opendaylight/netconf/auth/AuthProvider.java b/netconf/netconf-auth/src/main/java/org/opendaylight/netconf/auth/AuthProvider.java index e32b20bf34..db46d48663 100644 --- a/netconf/netconf-auth/src/main/java/org/opendaylight/netconf/auth/AuthProvider.java +++ b/netconf/netconf-auth/src/main/java/org/opendaylight/netconf/auth/AuthProvider.java @@ -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); - }