Package com.jcraft.jsch
Interface IdentityRepository
-
- All Known Implementing Classes:
IdentityRepository.Wrapper
public interface IdentityRepository
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IdentityRepository.Wrapper
JSch will accept ciphered keys, but some implementations of IdentityRepository can not.
-
Field Summary
Fields Modifier and Type Field Description static int
NOTRUNNING
static int
RUNNING
static int
UNAVAILABLE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
add(byte[] identity)
Vector
getIdentities()
String
getName()
int
getStatus()
boolean
remove(byte[] blob)
void
removeAll()
-
-
-
Field Detail
-
UNAVAILABLE
static final int UNAVAILABLE
- See Also:
- Constant Field Values
-
NOTRUNNING
static final int NOTRUNNING
- See Also:
- Constant Field Values
-
RUNNING
static final int RUNNING
- See Also:
- Constant Field Values
-
-