aa6514cd74e2f0ed8d338fb49e3d62c74c3b9286
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / authorization / AppRoleLevel.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.sal.authorization;
11
12 import java.io.Serializable;
13
14 /**
15  * Represents the application user role levels
16  * This level has meaning only inside the application context
17  * In the controller space such a role will be seen as <code>APPUSER<code>
18  * as specified in {@link UserLevel}
19  */
20 public enum AppRoleLevel implements Serializable {
21     APPADMIN(0, "App-Admin", "Application Administrator"), APPUSER(1,
22             "App-User", "Application User"), APPOPERATOR(2, "Network-Operator",
23             "Application Operator"), NOUSER(255, "Unknown User", "Unknown User");
24
25     private int userLevel;
26     private String level;
27     private String prettyLevel;
28
29     private AppRoleLevel(int userlevel, String level, String prettyLevel) {
30         this.userLevel = userlevel;
31         this.level = level;
32         this.prettyLevel = prettyLevel;
33     }
34
35     public int toNumber() {
36         return this.userLevel;
37     }
38
39     public String toString() {
40         return this.level;
41     }
42
43     public String toStringPretty() {
44         return this.prettyLevel;
45     }
46 }