Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / simulator / unittests / SimulatorTest / src / org / oic / simulator / clientcontroller / test / ObserveListenerObject.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,
23  * resource representation and sequence number for observe.
24  */
25 public class ObserveListenerObject
26 {
27     private String uId;
28     private SimulatorResourceModel representation;
29     private int sequenceNumber;
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 setSequenceNumber(int sequenceNumber)
53     {
54         this.sequenceNumber = sequenceNumber;
55     }
56
57     public int getSequenceNumber()
58     {
59         return sequenceNumber;
60     }
61
62     public void setEx(Throwable ex)
63     {
64         this.ex = ex;
65     }
66
67     public Throwable getEx()
68     {
69         return ex;
70     }
71 }