Package com.jcraft.jsch
Interface IdentityRepository
-
- All Known Implementing Classes:
AgentIdentityRepository
public interface IdentityRepository
-
-
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)
java.util.Vector<Identity>
getIdentities()
java.lang.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
-
-
Method Detail
-
getName
java.lang.String getName()
-
getStatus
int getStatus()
-
getIdentities
java.util.Vector<Identity> getIdentities()
-
add
boolean add(byte[] identity)
-
remove
boolean remove(byte[] blob)
-
removeAll
void removeAll()
-
-