blob: 00ab908d8eccac83602161f73854fd521c278d56 [file] [log] [blame]
Toshio Koidea03915e2014-07-01 18:39:52 -07001package net.onrc.onos.api.batchoperation;
2
3/**
4 * Operators used by BatchOperation classes.
5 */
6public enum BatchOperator {
7 /**
8 * Adds new intent.
9 */
10 ADD,
11
12 /**
13 * Removes existing intent specified by intent ID.
14 */
15 REMOVE,
16
17 /**
18 * Overwrites existing intent using new intent.
19 */
20 UPDATE,
21
22 /**
23 * Unknown type.
24 */
25 UNKNOWN,
26}