JUnit test cases for updated APIs.
[platform/upstream/iotivity.git] / service / simulator / unittests / SimulatorTest / src / org / oic / simulator / utils / ObjectHolder.java
  * limitations under the License.
  */
 
-package org.oic.simulator.serviceprovider.test;
+package org.oic.simulator.utils;
 
-/**
- * This class implements methods for setting/getting URI
- * and automation ID.
- */
-public class AutomationObject
-{
-
-    private String resourceURI;
-    private int automationId;
-
-    public void setResourceURI(String resourceURI)
-    {
-        this.resourceURI = resourceURI;
-    }
-
-    public String getResourceURI()
-    {
-        return resourceURI;
-    }
+public class ObjectHolder<T> {
+    private T mObject;
 
-    public void setAutomationId(int automationId)
-    {
-        this.automationId = automationId;
+    public void set(T object) {
+        mObject = object;
     }
 
-    public int getAutomationId()
-    {
-        return automationId;
+    public T get() {
+        return mObject;
     }
 }