blob: 5fcb80ba803b5718fc7581f7a03b228b3d15e8c1 [file] [log] [blame]
Changhoon Yoonbdeb88a2015-05-12 20:35:31 +09001/*
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 */
16
17package org.onosproject.core;
18
19public enum ApplicationRole {
20 /**
21 * Indicates that an application has an ADMIN role.
22 */
23 ADMIN,
24
25 /**
Changhoon Yoonb856b812015-08-10 03:47:19 +090026 * Indicates that an application has a USER role.
Changhoon Yoonbdeb88a2015-05-12 20:35:31 +090027 */
Changhoon Yoonb856b812015-08-10 03:47:19 +090028 USER,
Changhoon Yoonbdeb88a2015-05-12 20:35:31 +090029
30 /**
31 * Indicates that an application role has not been specified.
32 */
33 UNSPECIFIED,
34
35 /**
36 * More useful roles may be defined.
37 */
38}