1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.jdiagnose.library.web.spring;
17
18 import org.jdiagnose.remote.system.DefaultQuery;
19
20 /***
21 * @author jmccrindle
22 */
23 public class QueryCommand extends DefaultQuery {
24
25 public QueryCommand() {
26
27 }
28
29 /***
30 * @param startDate
31 * @param endDate
32 * @param host
33 * @param agent
34 * @param diagnostic
35 * @param maxResults
36 * @param system
37 */
38 public QueryCommand(long startDate, long endDate, String host,
39 String agent, String diagnostic, int maxResults, String system) {
40 super(startDate, endDate, host, agent, diagnostic, maxResults, system);
41 }
42 }