package org.ovirt.engine.core.common.queries; import org.ovirt.engine.core.compat.*; import org.ovirt.engine.core.common.businessentities.*; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; //C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to .NET attributes: @XmlAccessorType(XmlAccessType.NONE) @XmlType(name = "GetDeviceListQueryParameters") public class GetDeviceListQueryParameters extends VdsIdParametersBase { private static final long serialVersionUID = -3909252459169512472L; // C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to // .NET attributes: @XmlElement(name = "StorageType") private StorageType privateStorageType = StorageType.forValue(0); public StorageType getStorageType() { return privateStorageType; } private void setStorageType(StorageType value) { privateStorageType = value; } public GetDeviceListQueryParameters(Guid vdsId, StorageType storageType) { super(vdsId); setStorageType(storageType); } public GetDeviceListQueryParameters() { } }