source: trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlClientInfos.java @ 857

Last change on this file since 857 was 857, checked in by pharms, 12 years ago
  • initial version of the HTML monitor
File size: 1.1 KB
Line 
1package de.ugoe.cs.autoquest.htmlmonitor;
2
3import java.net.URL;
4
5/**
6 * <p>
7 * TODO comment
8 * </p>
9 *
10 * @author Patrick Harms
11 */
12public class HtmlClientInfos {
13
14    /**
15     *
16     */
17    private String clientId;
18
19    /**
20     *
21     */
22    private String userAgent;
23
24    /**
25     *
26     */
27    private URL url;
28
29    /**
30     *
31     */
32    private String title;
33
34    /**
35     * <p>
36     * TODO: comment
37     * </p>
38     *
39     * @param clientId
40     * @param userAgent
41     * @param url
42     * @param title
43     */
44    public HtmlClientInfos(String clientId, String userAgent, URL url, String title) {
45        this.clientId = clientId;
46        this.userAgent = userAgent;
47        this.url = url;
48        this.title = title;
49    }
50
51    /**
52     * @return the clientId
53     */
54    String getClientId() {
55        return clientId;
56    }
57
58    /**
59     * @return the userAgent
60     */
61    String getUserAgent() {
62        return userAgent;
63    }
64
65    /**
66     * @return the url
67     */
68    URL getUrl() {
69        return url;
70    }
71
72    /**
73     * @return the title
74     */
75    String getTitle() {
76        return title;
77    }
78
79}
Note: See TracBrowser for help on using the repository browser.