package org.ovirt.engine.core.common.vdscommands; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.ovirt.engine.core.common.businessentities.StorageType; import org.ovirt.engine.core.compat.Guid; //C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to .NET attributes: @XmlAccessorType(XmlAccessType.NONE) @XmlType(name = "GetDeviceListVDSCommandParameters") public class GetDeviceListVDSCommandParameters extends VdsIdVDSCommandParametersBase { public GetDeviceListVDSCommandParameters(Guid vdsId, StorageType storageType) { super(vdsId); setStorageType(storageType); } // 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 GetDeviceListVDSCommandParameters() { } @Override public String toString() { return String.format("%s, storageType=%s", super.toString(), getStorageType()); } }