// ********************************
public Hypervisor createHypervisor(final HypervisorType type, final String ip,
final String ipService, final int port, final String user, final String password)
{
Hypervisor h = new Hypervisor(this, type, ip, ipService, port, user, password);
this.hypervisor = h;
return h;
}