blob: a61e0466a257093dbc4bb4080cb647e7f66ab2a4 [file] [log] [blame]
syntax = "proto3";
option java_package = "org.onosproject.grpc.app.models";
package app;
enum ApplicationStateProto {
// Indicates that application has been installed, but is not running.
INSTALLED = 0;
// Indicates that application is active.
ACTIVE = 1;
}