blob: 4e7ef83177753952f01661cd4e95c995f46bf71c [file] [log] [blame]
Avantika-Huawei9e848e82016-09-01 12:12:42 +05301package org.onosproject.pcelabelstore;
2
3/**
4 * Representation of label operation over PCEP.
5 */
6public enum PcepLabelOp {
7 /**
8 * Signifies that the label operation is addition.
9 */
10 ADD,
11
12 /**
13 * Signifies that the label operation is modification. This is reserved for future.
14 */
15 MODIFY,
16
17 /**
18 * Signifies that the label operation is deletion.
19 */
20 REMOVE
21}