Ejemplo n.º 1
0
 def createEntry(self, ctx):
     if not ctx.getRequestType():
         return LegacyIntroEntryPoint(FUNCTIONAL_FLAG.UNDEFINED,
                                      ctx.getEntityType())
     else:
         prbType = ctx.getEntityType()
         return _SUPPORTED_ENTRY_BY_TYPE[prbType](
         ) if prbType in _SUPPORTED_ENTRY_BY_TYPE else None
Ejemplo n.º 2
0
 def createEntry(self, ctx):
     prbType = ctx.getEntityType()
     return LegacyIntroEntryPoint(
         FUNCTIONAL_FLAG.UNDEFINED, ctx.getEntityType(
         )) if not prbType else collectLegacyEntryPointByType(prbType)