def getById(self, id): """ @see: IEntityGetService.getById """ blogSync = EntityServiceAlchemy.getById(self, id) log.info("read Id=%d, Auto=%s" % (blogSync.Id, blogSync.Auto)) return blogSync
def getById(self, id): ''' @see: IEntityGetService.getById ''' blogSync = EntityServiceAlchemy.getById(self, id) log.info('read Id=%d, Auto=%s' % (blogSync.Id, blogSync.Auto)) return blogSync
def __init__(self): """ Construct the blog type service. """ EntityServiceAlchemy.__init__(self, BlogTypeMapped, QBlogType)
def __init__(self): ''' Construct the blog media service. ''' EntityServiceAlchemy.__init__(self, BlogMediaMapped)
def __init__(self): EntityServiceAlchemy.__init__(self, PersonMapped, QPerson)
def __init__(self): EntityServiceAlchemy.__init__(self, UserMapped, QUser)
def __init__(self): ''' Construct the blog sync service. ''' EntityServiceAlchemy.__init__(self, BlogSyncMapped, QBlogSync)
def __init__(self): EntityServiceAlchemy.__init__(self, Source, QSource)
def __init__(self): ''' Construct the article file service. ''' EntityServiceAlchemy.__init__(self, ArticleFileMapped, QArticleFile)
def __init__(self): ''' Construct the item content service. ''' EntityServiceAlchemy.__init__(self, ItemContentMapped, QItemContent)
def __init__(self): EntityServiceAlchemy.__init__(self, RoleMapped, QRole) RbacServiceAlchemy.__init__(self, RoleMapped) self._rootId = None
def __init__(self): ''' Construct the item group service. ''' EntityServiceAlchemy.__init__(self, ItemGroupMapped, QItemGroup)
def __init__(self): ''' Construct the post PostVerification status service. ''' EntityServiceAlchemy.__init__(self, PostVerificationMapped)
def __init__(self): EntityServiceAlchemy.__init__(self, Article) def getByArticleType(self, id, offset=None, limit=None):
def __init__(self): EntityServiceAlchemy.__init__(self, Article)
def __init__(self): assert isinstance( self.rbacService, IRbacService), 'Invalid rbac service %s' % self.rbacService EntityServiceAlchemy.__init__(self, RoleMapped, QRole)
def __init__(self): ''' Construct the blog theme service. ''' EntityServiceAlchemy.__init__(self, BlogThemeMapped, QBlogTheme)
def __init__(self): EntityServiceAlchemy.__init__(self, File, QFile)
def __init__(self): assert isinstance(self.rbacService, IRbacService), 'Invalid rbac service %s' % self.rbacService EntityServiceAlchemy.__init__(self, RoleMapped, QRole)
def __init__(self): ''' Construct the blog type service. ''' EntityServiceAlchemy.__init__(self, BlogTypeMapped, QBlogType)
def __init__(self): ''' Construct the reference service. ''' EntityServiceAlchemy.__init__(self, ReferenceMapped, QReference)