blob: d23af76224193243c2dbfb9834a71ba66e64f992 [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 /**
Saurav Das100e3b82015-04-30 11:12:10 -070039 * The group was reported as installed but is missing.
alshabib2a441c62015-04-13 18:39:38 -070040 */
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 /**
Saurav Das100e3b82015-04-30 11:12:10 -070049 * Incorrect Objective parameters passed in by the caller.
50 */
51 BADPARAMS,
52
53 /**
alshabib2a441c62015-04-13 18:39:38 -070054 * An unknown error occurred.
55 */
56 UNKNOWN
57}