mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 18:02:05 +02:00
[ONOS-6687] Add ApplicationRole enum type in protobuf model
Change-Id: I10919eeffbc57f6ca75a58e4c6a3ceecff780f1f
This commit is contained in:
parent
1025bdb91c
commit
7d6875cf70
@ -8,4 +8,15 @@ enum ApplicationStateProto {
|
||||
INSTALLED = 0;
|
||||
// Indicates that application is active.
|
||||
ACTIVE = 1;
|
||||
}
|
||||
}
|
||||
|
||||
enum ApplicationRoleProto {
|
||||
// Indicates that an application has an ADMIN role.
|
||||
ADMIN = 0;
|
||||
// Indicates that an application has a USER role.
|
||||
USER = 1;
|
||||
// Indicates that an application role has not been specified.
|
||||
UNSPECIFIED = 2;
|
||||
|
||||
// More useful roles may be defined...
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user