com.liferay.account.internal.security.permission.resource.AccountPortletResourcePermissionRegistrar 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.account.internal.security.permission.resource;
import com.liferay.account.constants.AccountConstants;
import com.liferay.account.constants.AccountPortletKeys;
import com.liferay.exportimport.kernel.staging.permission.StagingPermission;
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.StagedPortletPermissionLogic;
import com.liferay.portal.kernel.service.OrganizationLocalService;
import com.liferay.portal.kernel.util.HashMapDictionaryBuilder;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Reference;
/**
* @author Pei-Jung Lan
*/
@Component(immediate = true, service = {})
public class AccountPortletResourcePermissionRegistrar {
@Activate
protected void activate(BundleContext bundleContext) {
_serviceRegistration = bundleContext.registerService(
PortletResourcePermission.class,
PortletResourcePermissionFactory.create(
AccountConstants.RESOURCE_NAME,
new AccountPortletResourcePermissionLogic(
_organizationLocalService),
new StagedPortletPermissionLogic(
_stagingPermission,
AccountPortletKeys.ACCOUNT_ENTRIES_ADMIN)),
HashMapDictionaryBuilder.put(
"resource.name", AccountConstants.RESOURCE_NAME
).build());
}
@Deactivate
protected void deactivate() {
_serviceRegistration.unregister();
}
@Reference
private OrganizationLocalService _organizationLocalService;
private ServiceRegistration _serviceRegistration;
@Reference
private StagingPermission _stagingPermission;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy