
com.liferay.notification.internal.security.permission.resource.NotificationPortletResourcePermissionWrapper Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library 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 2.1 of the License, or (at your option)
* any later version.
*
* This library 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.
*/
package com.liferay.notification.internal.security.permission.resource;
import com.liferay.notification.constants.NotificationConstants;
import com.liferay.portal.kernel.model.Group;
import com.liferay.portal.kernel.security.permission.PermissionChecker;
import com.liferay.portal.kernel.security.permission.resource.BasePortletResourcePermissionWrapper;
import com.liferay.portal.kernel.security.permission.resource.PortletResourcePermission;
import com.liferay.portal.kernel.security.permission.resource.PortletResourcePermissionFactory;
import com.liferay.portal.kernel.security.permission.resource.PortletResourcePermissionLogic;
import org.osgi.service.component.annotations.Component;
/**
* @author Gustavo Lima
*/
@Component(
property = "resource.name=" + NotificationConstants.RESOURCE_NAME,
service = PortletResourcePermission.class
)
public class NotificationPortletResourcePermissionWrapper
extends BasePortletResourcePermissionWrapper {
@Override
protected PortletResourcePermission doGetPortletResourcePermission() {
return PortletResourcePermissionFactory.create(
NotificationConstants.RESOURCE_NAME,
new NotificationPortletResourcePermissionLogic());
}
private static class NotificationPortletResourcePermissionLogic
implements PortletResourcePermissionLogic {
@Override
public Boolean contains(
PermissionChecker permissionChecker, String name, Group group,
String actionId) {
if (permissionChecker.hasPermission(group, name, 0, actionId)) {
return true;
}
return false;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy