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 = "DiscoverSendTargetsQueryParameters") public class DiscoverSendTargetsQueryParameters extends VdcQueryParametersBase { private static final long serialVersionUID = 5247364599284007838L; // C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to // .NET attributes: @XmlElement(name = "Connection") private storage_server_connections privateConnection; public storage_server_connections getConnection() { return privateConnection; } private void setConnection(storage_server_connections value) { privateConnection = value; } // C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to // .NET attributes: @XmlElement(name = "VdsId") private Guid privateVdsId; public Guid getVdsId() { return privateVdsId; } private void setVdsId(Guid value) { privateVdsId = value; } public DiscoverSendTargetsQueryParameters(Guid vdsId, storage_server_connections connection) { setVdsId(vdsId); setConnection(connection); } public DiscoverSendTargetsQueryParameters() { } }