[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - role.py:1.1.2.1
Martijn Faassen
m.faassen@vet.uu.nl
Mon, 23 Jun 2003 14:34:44 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/services
In directory cvs.zope.org:/tmp/cvs-serv25818/src/zope/app/interfaces/services
Added Files:
Tag: faassen-roleservice_confusion-branch
role.py
Log Message:
Work on the local role service. It still doesn't work..
=== Added File Zope3/src/zope/app/interfaces/services/role.py ===
from zope.app.interfaces.services.registration import IRegisterable
from zope.app.interfaces.services.registration import INamedComponentRegistration
from zope.app.interfaces.annotation import IAttributeAnnotatable
from zope.app.interfaces.security import IRoleService
class ILocalRoleData(IRegisterable, IAttributeAnnotatable):
pass
class ILocalRoleService(IRoleService):
pass
class ILocalRoleRegistration(INamedComponentRegistration):
pass