schema
(type:
InterfaceClass
)
<InterfaceClass zope.app.authentication.groupfolder.IGroupSearchCriteria>
authenticateCredentials(credentials)
get(key, default=None)
See interface IReadContainer
getGroupsForPrincipal(principalid)
Get groups the given principal belongs to
getPrincipalsForGroup(groupid)
Get principals which belong to the group
has_key(key)
See interface IReadContainer
Reimplement this method, since has_key() returns the key if available, while we expect True or False.
>>> c = BTreeContainer() >>> "a" in c False >>> c["a"] = 1 >>> "a" in c True >>> "A" in c False
items()
See interface IReadContainer
keys()
See interface IReadContainer
principalInfo(id)
search(query, start=None, batch_size=None)
Search for groups
values()
See interface IReadContainer
There are no known subclasses.