3030#################################################################################################
3131
3232
33- class _QMProject (_project ._Project , _qmrestapi .QM_REST_API_Mixin ):
33+ class QMProject (_project ._Project , _qmrestapi .QM_REST_API_Mixin ):
3434 # A QM project
3535 def __init__ (self , name , project_uri , app , is_optin = False , singlemode = False ,defaultinit = True ):
3636 super ().__init__ (name , project_uri , app , is_optin ,singlemode ,defaultinit = defaultinit )
@@ -313,7 +313,7 @@ def list_components( self ):
313313
314314 def _create_component_api (self , component_prj_url , component_name ):
315315 logger .info ( f"CREATE QM COMPONENT { self = } { component_prj_url = } { component_name = } { self .app = } { self .is_optin = } { self .singlemode = } " )
316- result = _QMComponent (component_name , component_prj_url , self .app , self .is_optin , self .singlemode , defaultinit = False , project = self )
316+ result = QMComponent (component_name , component_prj_url , self .app , self .is_optin , self .singlemode , defaultinit = False , project = self )
317317 return result
318318
319319
@@ -415,7 +415,7 @@ def get_default_stream_name( self ):
415415
416416#################################################################################################
417417
418- class _QMComponent ( _QMProject ):
418+ class QMComponent ( QMProject ):
419419 def __init__ (self , name , project_uri , app , is_optin = False , singlemode = False ,defaultinit = True , project = None ):
420420 if not project :
421421 raise Exception ( "You mist provide a project instance when creating a component" )
@@ -426,9 +426,9 @@ def __init__(self, name, project_uri, app, is_optin=False, singlemode=False,defa
426426#################################################################################################
427427
428428@utils .mixinomatic
429- class _QMApp (_app ._App , oslcqueryapi ._OSLCOperations_Mixin , _typesystem .Type_System_Mixin ):
429+ class QMApp (_app ._App , oslcqueryapi ._OSLCOperations_Mixin , _typesystem .Type_System_Mixin ):
430430 domain = 'qm'
431- project_class = _QMProject
431+ project_class = QMProject
432432 supports_configs = True
433433 supports_components = True
434434 supports_reportable_rest = True
0 commit comments