Gets the identityRepository. If this.identityRepository is null , JSch#getIdentityRepository() will be invoked. @see JSch#getIdentityRepository()
()
| 2587 | * @see JSch#getIdentityRepository() |
| 2588 | */ |
| 2589 | IdentityRepository getIdentityRepository(){ |
| 2590 | if(identityRepository == null) |
| 2591 | return jsch.getIdentityRepository(); |
| 2592 | return identityRepository; |
| 2593 | } |
| 2594 | |
| 2595 | /** |
| 2596 | * Sets the hostkeyRepository, which will be referred in checking host keys. |
no outgoing calls
no test coverage detected