public VcTask turnOffFT(final IVcTaskCallback callback) throws Exception {
return VcContext.getTaskMgr().execute(new IVcTaskBody() {
public VcTask body() throws Exception {
VirtualMachine vm = getManagedObject();
return new VcTask(TaskType.TurnOffFT,
vm.turnOffFaultTolerance(),
callback);
}
});
}