| 1677 | } |
| 1678 | |
| 1679 | @Override |
| 1680 | public String toString() { |
| 1681 | return "Device{" + |
| 1682 | "sshClient=" + sshClient + |
| 1683 | ", hostName='" + hostName + '\'' + |
| 1684 | ", port=" + port + |
| 1685 | ", connectionTimeout=" + connectionTimeout + |
| 1686 | ", commandTimeout=" + commandTimeout + |
| 1687 | ", userName='" + userName + '\'' + |
| 1688 | ", password='" + (password != null ? "***" : null) + '\'' + |
| 1689 | ", keyBasedAuthentication=" + keyBasedAuthentication + |
| 1690 | ", pemKeyFile='" + pemKeyFile + '\'' + |
| 1691 | ", strictHostKeyChecking=" + strictHostKeyChecking + |
| 1692 | ", hostKeysFileName='" + hostKeysFileName + '\'' + |
| 1693 | ", xmlBuilder=" + xmlBuilder + |
| 1694 | ", netconfCapabilities=" + netconfCapabilities + |
| 1695 | ", helloRpc='" + helloRpc + '\'' + |
| 1696 | '}'; |
| 1697 | } |
| 1698 | } |