Discuss this help topic in SecureBlackbox Forum
This event is fired when the client has sent request for keys listing
Declaration
[Java]
TSBSSHPublicKeyListEvent getOnList();
void setOnList(TSBSSHPublicKeyListEvent Value);
TSBSSHPublicKeyListEvent.Callback OnList = new TSBSSHPublicKeyListEvent.Callback() {
public void TSBSSHPublicKeyListEventCallback(TObject arg0, ArrayList arg1, ArrayList arg2, TSBInteger arg3, TSBString arg4) {
//...
}
}
Parameters
- Keys - list object where the key objects should be put
- Attributes - list object where key attributes can be put
- FreeObjects - If True SBSSHPubKeyServer will destroy Keys and Attributes objects otherwise they have to be freed manually.
- ErrorCode - error code. Has to be assigned inside handler.
- Comment -
- pcComment -
- szComment -
ErrorCode values
Description
This event is fired when client requests a public key listing.
All client's public keys has to be placed to the Keys list in the event handler. Attributes for corresponding keys
can be placed to the Attributes list but it is not necessary. If Attributes are used then indexes in two lists have to
meet (attributes have the same index as corresponding key).
Server has to set ErrorCodeand Comment values according to result of request processing.
Discuss this help topic in SecureBlackbox Forum