including a new Simulator hypervisor type

This commit is contained in:
Prasanna Santhanam 2011-03-30 19:39:32 +05:30
parent 1b251a5fc8
commit a72427444b
1 changed files with 3 additions and 1 deletions

View File

@ -54,9 +54,11 @@ public class Hypervisor {
return HypervisorType.Parralels;
}else if (hypervisor.equalsIgnoreCase("BareMetal")) {
return HypervisorType.BareMetal;
} else if (hypervisor.equalsIgnoreCase("Simulator")) {
return HypervisorType.Simulator;
} else if (hypervisor.equalsIgnoreCase("Any")) {
return HypervisorType.Any;
} else {
} else {
return HypervisorType.None;
}
}