[CORD-1630] Model verbose_name
Change-Id: Icf7a150d242a41847e92edef51a277cd9e28583b
diff --git a/xos/onos.xproto b/xos/onos.xproto
index fe00bdd..defc4f1 100644
--- a/xos/onos.xproto
+++ b/xos/onos.xproto
@@ -1,17 +1,20 @@
option kind="onos";
option name="onos";
-option verbose_name="ONOS Service";
message ONOSApp (ServiceInstance){
- optional string install_dependencies = 1 [db_index = False, null = True, blank = True];
- optional string dependencies = 2 [db_index = False, null = True, blank = True];
+ option verbose_name="ONOS Application";
+
+ optional string install_dependencies = 1 [db_index = False, null = True, blank = True];
+ optional string dependencies = 2 [db_index = False, null = True, blank = True];
}
message ONOSService (Service){
- optional string rest_hostname = 1 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True];
- required int32 rest_port = 2 [default = 8181, null = False, db_index = False, blank = False];
- required bool no_container = 3 [default = False, null = False, db_index = False, blank = True];
- optional string node_key = 4 [db_index = False, max_length = 1024, null = True, content_type = "stripped", blank = True];
- optional string rest_username = 5 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True, default="karaf"];
- optional string rest_password = 6 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True, default="karaf"];
+ option verbose_name="ONOS Service";
+
+ optional string rest_hostname = 1 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True];
+ required int32 rest_port = 2 [default = 8181, null = False, db_index = False, blank = False];
+ required bool no_container = 3 [default = False, null = False, db_index = False, blank = True];
+ optional string node_key = 4 [db_index = False, max_length = 1024, null = True, content_type = "stripped", blank = True];
+ optional string rest_username = 5 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True, default="karaf"];
+ optional string rest_password = 6 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True, default="karaf"];
}