Minor adjustments for Tomoyo for the fourth benchmark
[iot2.git] / iotjava / iotruntime / messages / IoTCommCode.java
1 package iotruntime.messages;
2
3 /** Class IoTCommCode is a place to keep all the necessary
4  *  enumerations for communication
5  *
6  * @author      Rahmadi Trimananda <rahmadi.trimananda @ uci.edu>
7  * @version     1.0
8  * @since       2016-02-19
9  */
10
11 // Enumeration of master-slave communication codes
12 public enum IoTCommCode {
13
14         ACKNOWLEDGED,
15         CREATE_DRIVER_OBJECT,
16         CREATE_OBJECT,
17         CREATE_MAIN_OBJECT,
18         CREATE_NEW_IOTSET,
19         CREATE_NEW_IOTRELATION,
20         END_TRANSFER,
21         END_SESSION,
22         GET_ADD_IOTSET_OBJECT,
23         GET_DEVICE_IOTSET_OBJECT,
24         GET_IOTSET_OBJECT,
25         GET_IOTRELATION_FIRST_OBJECT,
26         GET_IOTRELATION_SECOND_OBJECT,
27         GET_ZB_DEV_IOTSET_OBJECT,
28         INVOKE_INIT_METHOD,
29         REINITIALIZE_IOTSET_FIELD,
30         REINITIALIZE_IOTRELATION_FIELD,
31         TRANSFER_FILE,
32 }
33