Files
alfresco-community-repo/source/java/org/alfresco/repo/security/permissions/PermissionServicePolicies.java
Constantin Popa ab81943a66 Merged WEBAPP-API (5.2.1) to 5.2.N (5.2.1)
136412 cpopa: APPSREPO-66: Capture and transmit permission changes to the client
      - Added AuthorityServicePolicies policies which are invoked when a group is deleted, an authority is added or removed from a group
      - Added PermissionServicePolicies policies which are invoked when a local permissions is granted/removed, permission inheritance is enabled/disabled


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@136420 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2017-04-25 14:03:02 +00:00

107 lines
4.0 KiB
Java

/*
* #%L
* Alfresco Repository
* %%
* Copyright (C) 2005 - 2017 Alfresco Software Limited
* %%
* This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
package org.alfresco.repo.security.permissions;
import org.alfresco.repo.policy.ClassPolicy;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.namespace.NamespaceService;
import org.alfresco.service.namespace.QName;
/**
* Policies for PermissionService
*
* @author cpopa
*
*/
public interface PermissionServicePolicies
{
/**
* Policy invoked when a permission is granted to an authority for a specific node
*/
public interface OnGrantLocalPermission extends ClassPolicy
{
public static final QName QNAME = QName.createQName(NamespaceService.ALFRESCO_URI, "onGrantLocalPermission");
/**
* A permission was granted to an authority for a specific node
*
* @param nodeRef the node on which the permission is granted
* @param authority the authority being granted the permission
* @param permission the permission at question
*/
public void onGrantLocalPermission(NodeRef nodeRef, String authority, String permission);
}
/**
* Policy invoked when a permission is revoked from an authority for a specific node
*/
public interface OnRevokeLocalPermission extends ClassPolicy
{
public static final QName QNAME = QName.createQName(NamespaceService.ALFRESCO_URI, "onRevokeLocalPermission");
/**
* A permission was revoked from an authority for a specific node
*
* @param nodeRef the node from which the permission is revoked
* @param authority the authority being revoked the permission
* @param permission the permission at question
*/
public void onRevokeLocalPermission(NodeRef nodeRef, String authority, String permission);
}
/**
* Policy invoked when permission inheritance is enabled for a specific node
*/
public interface OnInheritPermissionsEnabled extends ClassPolicy
{
public static final QName QNAME = QName.createQName(NamespaceService.ALFRESCO_URI, "onInheritPermissionsEnabled");
/**
* Permission inheritance was enabled
*
* @param nodeRef the node for which the inheritance is enabled
*/
public void onInheritPermissionsEnabled(NodeRef nodeRef);
}
/**
* Policy invoked when permission inheritance is disabled for a specific node (sync or async mode)
*/
public interface OnInheritPermissionsDisabled extends ClassPolicy
{
public static final QName QNAME = QName.createQName(NamespaceService.ALFRESCO_URI, "onInheritPermissionsDisabled");
/**
* Permission inheritance was disabled
*
* @param nodeRef the node for which the inheritance is disabled
* @param async whether the operation has been done in asynchronous mode, thus it may not be finished yet
*/
public void onInheritPermissionsDisabled(NodeRef nodeRef, boolean async);
}
}