Uses of Class
net.schmizz.sshj.userauth.password.Resource
-
Packages that use Resource Package Description net.schmizz.sshj.userauth.keyprovider net.schmizz.sshj.userauth.method net.schmizz.sshj.userauth.password -
-
Uses of Resource in net.schmizz.sshj.userauth.keyprovider
Fields in net.schmizz.sshj.userauth.keyprovider declared as Resource Modifier and Type Field Description protected Resource<?>
BaseFileKeyProvider. resource
private Resource<?>
EncryptedPEMKeyReader. resource
Constructors in net.schmizz.sshj.userauth.keyprovider with parameters of type Resource Constructor Description EncryptedPEMKeyReader(PasswordFinder passwordFinder, Resource<?> resource)
-
Uses of Resource in net.schmizz.sshj.userauth.method
Fields in net.schmizz.sshj.userauth.method declared as Resource Modifier and Type Field Description private Resource
PasswordResponseProvider. resource
Methods in net.schmizz.sshj.userauth.method with parameters of type Resource Modifier and Type Method Description void
ChallengeResponseProvider. init(Resource resource, java.lang.String name, java.lang.String instruction)
void
PasswordResponseProvider. init(Resource resource, java.lang.String name, java.lang.String instruction)
-
Uses of Resource in net.schmizz.sshj.userauth.password
Subclasses of Resource in net.schmizz.sshj.userauth.password Modifier and Type Class Description class
AccountResource
class
PrivateKeyFileResource
class
PrivateKeyReaderResource
class
PrivateKeyStringResource
Methods in net.schmizz.sshj.userauth.password with parameters of type Resource Modifier and Type Method Description char[]
PasswordUpdateProvider. provideNewPassword(Resource<?> resource, java.lang.String prompt)
Called with the prompt received from the SSH server.char[]
ConsolePasswordFinder. reqPassword(Resource<?> resource)
char[]
PasswordFinder. reqPassword(Resource<?> resource)
Request password for specified resource.boolean
ConsolePasswordFinder. shouldRetry(Resource<?> resource)
boolean
PasswordFinder. shouldRetry(Resource<?> resource)
If password turns out to be incorrect, indicates whether another call toPasswordFinder.reqPassword(Resource)
should be made.boolean
PasswordUpdateProvider. shouldRetry(Resource<?> resource)
If password turns out to be incorrect, indicates whether another call toPasswordUpdateProvider.provideNewPassword(Resource, String)
should be made.
-