/** * Create an instance of {@link JAXBElement }{@code <}{@link RollbackFailure }{@code >}} * */ @XmlElementDecl(namespace = "urn:pbm", name = "RollbackFailureFault") public JAXBElement<RollbackFailure> createRollbackFailureFault(RollbackFailure value) { return new JAXBElement<RollbackFailure>(_RollbackFailureFault_QNAME, RollbackFailure.class, null, value); }
/** @since SDK5.1 */ public Task dVPortgroupRollback_Task(EntityBackupConfig entityBackup) throws RollbackFailure, DvsFault, RuntimeFault, RemoteException { ManagedObjectReference mor = getVimService().dVPortgroupRollback_Task(getMOR(), entityBackup); return new Task(getServerConnection(), mor); }
/** @since SDK5.1 */ public Task dVSRollback_Task(EntityBackupConfig spec) throws RollbackFailure, DvsFault, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().dVSRollback_Task(getMOR(), spec); return new Task(getServerConnection(), taskMor); }