Java 类com.vmware.vim25.IORMNotSupportedHostOnDatastore 实例源码

项目:photon-model    文件:ObjectFactory.java   
/**
 * Create an instance of {@link JAXBElement }{@code <}{@link IORMNotSupportedHostOnDatastore }{@code >}}
 * 
 */
@XmlElementDecl(namespace = "urn:pbm", name = "IORMNotSupportedHostOnDatastoreFault")
public JAXBElement<IORMNotSupportedHostOnDatastore> createIORMNotSupportedHostOnDatastoreFault(IORMNotSupportedHostOnDatastore value) {
    return new JAXBElement<IORMNotSupportedHostOnDatastore>(_IORMNotSupportedHostOnDatastoreFault_QNAME, IORMNotSupportedHostOnDatastore.class, null, value);
}
项目:vijava    文件:StorageResourceManager.java   
public Task configureDatastoreIORM_Task(Datastore datastore, StorageIORMConfigSpec spec) throws InaccessibleDatastore, IORMNotSupportedHostOnDatastore, RuntimeFault, RemoteException
{
  ManagedObjectReference mor = getVimService().configureDatastoreIORM_Task(getMOR(), datastore.getMOR(), spec);
  return new Task(getServerConnection(), mor);
}