Adding debug messages on slave to print info for designing C++ slave part
[iot2.git] / benchmarks / original_interfaces / Room.java
1 package iotcode.interfaces;
2
3 import java.rmi.Remote;
4 import java.rmi.RemoteException;
5
6 /** Interface Room for all room implementations
7  *
8  * @author      Ali Younis <ayounis @ uci.edu>
9  * @version     1.0                
10  * @since       2016-01-27
11  */
12 public interface Room extends Remote {
13
14         /** Method to return room ID.
15          *
16          *   @param None.
17          *
18          *   @return [int] Room identifier.
19          */
20         public int getRoomID() throws RemoteException;
21 }