Sets the password used for password‑based SSH authentication. Ignored if #keyBasedAuth(String) is used instead. @param password login password @return this Builder for fluent chaining
(String password)
| 227 | * @return this {@code Builder} for fluent chaining |
| 228 | */ |
| 229 | public Builder password(String password) { |
| 230 | this.password = password; |
| 231 | return this; |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Enables key‑based SSH authentication and sets the path to the PEM |
no outgoing calls