source: trunk/autoquest-generic-event-monitor/src/main/java/de/ugoe/cs/autoquest/genericeventmonitor/ClientInfos.java @ 2155

Last change on this file since 2155 was 2155, checked in by pharms, 7 years ago
  • Property svn:mime-type set to text/plain
File size: 1.4 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.genericeventmonitor;
16
17/**
18 * <p>
19 * represents infos of a client, e.g., its id
20 * </p>
21 *
22 * @author Patrick Harms
23 */
24class ClientInfos {
25
26    /**
27     * id of a client
28     */
29    private String clientId;
30
31    /**
32     * id of the app the client uses
33     */
34    private String appId;
35
36    /**
37     * <p>
38     * instantiates an infos object with client id and an app id
39     * </p>
40     *
41     * @param clientId  id of a client
42     * @param appId  id of the app that the client uses
43     */
44    ClientInfos(String clientId, String appId) {
45        this.clientId = clientId;
46        this.appId = appId;
47    }
48
49    /**
50     * @return the clientId
51     */
52    String getClientId() {
53        return clientId;
54    }
55
56    /**
57     * @return the appId
58     */
59    String getAppId() {
60        return appId;
61    }
62
63}
Note: See TracBrowser for help on using the repository browser.