Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / simulator / unittests / SimulatorTest / src / org / oic / simulator / clientcontroller / test / ListenerObject.java
1 /*
2  * Copyright 2015 Samsung Electronics All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.oic.simulator.clientcontroller.test;
18
19 import org.oic.simulator.SimulatorResourceModel;
20
21 /**
22  * This class implements methods for setting/getting UID and
23  * resource representation.
24  */
25 public class ListenerObject
26 {
27
28     private String uId;
29     private SimulatorResourceModel representation;
30     private Throwable ex;
31
32     public void setuId(String uId)
33     {
34         this.uId = uId;
35     }
36
37     public String getuId()
38     {
39         return uId;
40     }
41
42     public void setRepresentation(SimulatorResourceModel representation)
43     {
44         this.representation = representation;
45     }
46
47     public SimulatorResourceModel getRepresentation()
48     {
49         return representation;
50     }
51
52     public void setEx(Throwable ex)
53     {
54         this.ex = ex;
55     }
56
57     public Throwable getEx()
58     {
59         return ex;
60     }
61 }