Package net.schmizz.sshj.userauth
Interface AuthParams
-
public interface AuthParams
The parameters available to authentication methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getNextServiceName()
Transport
getTransport()
java.lang.String
getUsername()
-
-
-
Method Detail
-
getNextServiceName
java.lang.String getNextServiceName()
- Returns:
- name of the next service being requested
-
getTransport
Transport getTransport()
- Returns:
- the transport which will allow sending packets; retrieving information like the session-id, remote host/port etc. which is needed by some method.
-
getUsername
java.lang.String getUsername()
- Returns:
- all userauth requests need to include the username
-
-