mirror of
https://github.com/github/codeql.git
synced 2026-08-04 01:13:00 +02:00
16 lines
337 B
Java
Generated
16 lines
337 B
Java
Generated
/*
|
|
* Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
|
|
* Please refer to the LICENSE.txt for licensing details.
|
|
*/
|
|
package ch.ethz.ssh2;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class Connection
|
|
{
|
|
public synchronized boolean authenticateWithPassword(String user, String password) throws IOException
|
|
{
|
|
return true;
|
|
}
|
|
}
|