package org.ovirt.engine.core.common.vdscommands; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.ovirt.engine.core.common.businessentities.VDS; 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 = "VdsIdAndVdsVDSCommandParametersBase") public class VdsIdAndVdsVDSCommandParametersBase extends VdsIdVDSCommandParametersBase { private VDS privateVds; public VDS getVds() { return privateVds; } public void setVds(VDS value) { privateVds = value; } public VdsIdAndVdsVDSCommandParametersBase(VDS vds) { super(vds.getvds_id()); setVds(vds); } public VdsIdAndVdsVDSCommandParametersBase(Guid vdsId) { super(vdsId); } public VdsIdAndVdsVDSCommandParametersBase() { } @Override public String toString() { return String.format("%s, vds=%s", super.toString(), getVds()); } }