blob: ab79e2fd1356441858f551950fa3d5822144bea1 [file] [log] [blame]
pierventre30368ab2021-02-24 23:23:22 +01001/*
2 * Copyright 2021-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.segmentrouting.policy.api;
17
18/**
19 * Represents the state of a traffic match as seen by the system.
20 */
pierventre4f68ffa2021-03-09 22:52:14 +010021// TODO consider to add a FAILED state for an invalid traffic match that cannot be fulfilled even after a retry
pierventre30368ab2021-02-24 23:23:22 +010022public enum TrafficMatchState {
23 /**
24 * The traffic match is in the process of being added.
25 */
26 PENDING_ADD,
27
28 /**
29 * The traffic match has been added.
30 */
31 ADDED,
32
33 /**
34 * The traffic match is in the process of being removed.
35 */
36 PENDING_REMOVE
37}