blob: 48155611855774f32de8b9535b0a1d20f5b89312 [file] [log] [blame]
Jian Li1025bdb2017-06-27 07:22:14 +09001syntax = "proto3";
2option java_package = "org.onosproject.grpc.app.models";
3
4package app;
5
6enum ApplicationStateProto {
7 // Indicates that application has been installed, but is not running.
8 INSTALLED = 0;
9 // Indicates that application is active.
10 ACTIVE = 1;
Jian Li7d6875c2017-06-27 07:25:12 +090011}
12
13enum ApplicationRoleProto {
14 // Indicates that an application has an ADMIN role.
15 ADMIN = 0;
16 // Indicates that an application has a USER role.
17 USER = 1;
18 // Indicates that an application role has not been specified.
19 UNSPECIFIED = 2;
20
21 // More useful roles may be defined...
22}