Displaying 1 result from an estimated 1 matches for "customconnectauth".
2014 Apr 14
1
libvirt Java - vmware (esx driver)
Hi,
I'm trying to connect to a VMware vCenter Server (Version 5.0.0 Build
1300600) using this code:
class CustomConnectAuth extends ConnectAuth {
> CustomConnectAuth() {
>
// credType = ...
// ...
> }
> @Override
> int callback(Credential[] cred) {
> // ...
> return 0
> }
> }
>
ConnectAuth auth = new CustomConnectAuth()
> Connect con...