blob: 192b2069efa3524bea18f3113d1266f30e390d18 [file] [log] [blame]
alshabib2a441c62015-04-13 18:39:38 -07001/*
2 * Copyright 2015 Open Networking Laboratory
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.net.flowobjective;
17
18/**
19 * Represents the set of errors possible when processing an objective.
20 */
21public enum ObjectiveError {
22
23 /**
24 * The driver processing this objective does not know how to process it.
25 */
26 UNSUPPORTED,
27
28 /**
29 * The flow installation for this objective failed.
30 */
31 FLOWINSTALLATIONFAILED,
32
33 /**
34 * THe group installation for this objective failed.
35 */
36 GROUPINSTALLATIONFAILED,
37
38 /**
39 * The group was reported as installed but is not missing.
40 */
41 GROUPMISSING,
42
43 /**
Jonathan Hart17d00452015-04-21 17:10:00 -070044 * The device was not available to install objectives to.
45 */
46 DEVICEMISSING,
47
48 /**
alshabib2a441c62015-04-13 18:39:38 -070049 * An unknown error occurred.
50 */
51 UNKNOWN
52}