Fix netconf-connector-config groupId
[netconf.git] / opendaylight / netconf / netconf-netty-util / src / main / java / org / opendaylight / netconf / nettyutil / handler / ssh / authentication / LoginPassword.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netconf.nettyutil.handler.ssh.authentication;
10
11 import java.io.IOException;
12 import org.apache.sshd.ClientSession;
13 import org.apache.sshd.client.future.AuthFuture;
14
15 //TODO checkstyle reports imports only used in javadoc as not used, readd link to AsyncSshHandler once this is no longer the case
16 /**
17  * Class Providing username/password authentication option to
18  * AsyncSshHandler
19  */
20 public class LoginPassword extends AuthenticationHandler {
21     private final String username;
22     private final String password;
23
24     public LoginPassword(String username, String password) {
25         this.username = username;
26         this.password = password;
27     }
28
29     @Override
30     public String getUsername() {
31         return username;
32     }
33
34     @Override
35     public AuthFuture authenticate(final ClientSession session) throws IOException {
36         session.addPasswordIdentity(password);
37         return session.auth();
38     }
39 }