/************************************************************************************ * Copyright (C) 2008 by Politehnica University of Bucharest and Rutgers University * All rights reserved. * Refer to LICENSE for terms and conditions of use. ***********************************************************************************/ package vnsim.applications.vitp.predefinedqueries; import vnsim.applications.vitp.utils.VITPRequest; public class QueryByVehicleId extends Query { public int vehicleId; //the id of the vehicle on which //this query should be injected public QueryByVehicleId(VITPRequest req, int vehicleId) { super(req); this.vehicleId=vehicleId; } }