VOL-174: Support configuration of GEMs as per WT-385 and auto-allocation of gemport-ids

 * As an operator, I should be able to provision a GEMPORT object for the ONU and assign to a UNI
 * As an operator, I should be able to retrieve the provisioned GEMPORT

Additional Notes:

 * gemport-ids should be auto-allocated for the GEMPORT object
 * generic IAdapter interface to be provided that will be used by OLT and ONU adapters for GEM port configuration
 * In the best interest of schedules/timing, in the first step(e.g. POC-3 & trial), assume the queueing model to be supported (to be detailed) (i.e. no configuration of queueing model)
 * The concerned OLT and ONU should be configured with the allocated gemport-ids

VOL-173: Support configuration of TCONTs as per WT-385 and auto-allocation of alloc-ids

 * As an operator, I should be able to provision a TCONT for the ONU with an existing traffic descriptor profile
 * As an operator, I should be able to retrieve the provisioned TCONT
 * As an operator, I should be able to change the traffic descriptor profile for a TCONT

Additional Notes:

 * alloc-ids should be allocated for the TCONT
 * generic IAdapter interface to be provided that will be used by OLT and ONU adapters for TCONT/alloc-id/BW configuration
 * In the best interest of schedules/timing, in the first step(e.g. POC-3 & trial), assume the queueing model to be supported (to be detailed) (i.e. no configuration of queueing model)
 * The concerned ONU should receive upstream grants upon provisioning of TCONT for the ONU

Change-Id: If9fa02accaa306409ddb3872c8e46566c74927b0
diff --git a/voltha/protos/bbf_fiber_channelpair_body.proto b/voltha/protos/bbf_fiber_channelpair_body.proto
index a66996b..231cd85 100644
--- a/voltha/protos/bbf_fiber_channelpair_body.proto
+++ b/voltha/protos/bbf_fiber_channelpair_body.proto
@@ -3,16 +3,15 @@
 import "bbf_fiber_types.proto";
 
 message ChannelpairConfigData {
-    string channelgroup_ref = 1 ;
-    string channelpartition_ref = 2 ;
-    string channelpair_type = 3 ;
-    string channelpair_linerate = 4 ;
-    uint32 gpon_ponid_interval = 5 ;
+    string channelgroup_ref = 1;
+    string channelpartition_ref = 2;
+    string channelpair_type = 3;
+    string channelpair_linerate = 4;
+    uint32 gpon_ponid_interval = 5;
     bbf_fiber_types.PonIdOdnClassType gpon_ponid_odn_class = 6;
 }
 message ChannelpairOperData {
-    uint32 actual_downstream_lambda = 1 ;
-    bool primary_ct_assigned = 2 ;
-    bool secondary_ct_assigned = 3 ;
+    uint32 actual_downstream_lambda = 1;
+    bool primary_ct_assigned = 2;
+    bool secondary_ct_assigned = 3;
 }
-