SecurityPolicy

Provides a single method that accepts the object, the permission, and the context of the access being checked and is used to implement the application logic for the security framework.

Example:

    class SecurityPolicy:

        implements(ISecurityPolicy)

        def checkPermission(self, permission, object, context):
            return True



( 97 subscribers )