package org.ovirt.engine.core.common.queries; import org.ovirt.engine.core.compat.*; 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 = "GetDbUserByUserIdParameters") public class GetDbUserByUserIdParameters extends VdcQueryParametersBase { private static final long serialVersionUID = -940823391332892259L; public GetDbUserByUserIdParameters(Guid id) { _id = id; } // C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to // .NET attributes: @XmlElement(name = "Id") private Guid _id = new Guid(); public Guid getUserId() { return _id; } @Override public RegisterableQueryReturnDataType GetReturnedDataTypeByVdcQueryType(VdcQueryType queryType) { return RegisterableQueryReturnDataType.IQUERYABLE; } public GetDbUserByUserIdParameters() { } }